-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (57 loc) · 1.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Devlin Russell</title>
<link rel="stylesheet" href="styles/index.css">
<script src="init.js"></script>
</head>
<body>
<main>
<section class="title-card">
<img class="title" src="name.svg" alt="devlin russell">
</section>
<section class="projects-card">
<div class="project one">
<a href="oscar_party.html">
<img class="poly" src="poly.svg" alt="polygon">
</a>
<div class="description">
<h2>Oscar Party</h2>
<h3>Interactive Oscar Ballot</h3>
<div class="bullets">
<p>▸ TypeScript</p>
<p>▸ React</p>
<p>▸ Next.js</p>
<p>▸ MongoDB Atlas</p>
</div>
</div>
</div>
<div class="project two">
<a href="weather.html">
<img class="poly" src="poly.svg" alt="polygon">
</a>
<div class="description">
<h2>Weather</h2>
<h3>XML Parsing Library</h3>
<div class="bullets">
<p>▸ JavaScript</p>
<p>▸ Node.js</p>
<p>▸ NPM</p>
</div>
</div>
</div>
</section>
<a class="bayes" href="bayes">
<div class="grid-drawing">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</a>
</main>
<script src="index.js"></script>
</body>
</html>