-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (47 loc) · 1.64 KB
/
index.html
File metadata and controls
62 lines (47 loc) · 1.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>baby site</title>
<meta name="description" content="my first venture into the web :)">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<div class="navigation">
<a href="./index.html">work</a>
<a href="#">about</a>
<a href="#">resume</a>
</div>
<img src="./assets/smiley.png" />
</div>
<div class="content">
<div>
<p class="large-text semibold">hi, I'm [your name here]!</p>
<p class="medium-text">software engineer. national fencing champion. world traveler. monke.</p>
</div>
<div class="projects">
<div class="project-card">
<img src="https://picsum.photos/294" />
<p class="medium-text semibold">project name 1</p>
<p>I used HTML, CSS, and JS for this cool project. Wow!</p>
</div>
<div class="project-card">
<img src="./assets/lilac.png" />
<p class="medium-text semibold">project name 1</p>
<p>I used HTML, CSS, and JS for this cool project. Wow!</p>
</div>
<div class="project-card">
<img src="./assets/lilac.png" />
<p class="medium-text semibold">project name 1</p>
<p>I used HTML, CSS, and JS for this cool project. Wow!</p>
</div>
</div>
</div>
<div class="footer">
<a href="/">contact</a>
</div>
</body>
</html>