-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Samuel Lay</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Samuel Lay</h1>
<nav>
<a id="experience-link" href="index.html">experience</a>
<a id="about-link" href="about.html">about</a>
<a id="contact-link" href="mailto:[email protected]">contact</a>
<a id="resume-link" href="files/resume.pdf" target="_blank">resume</a>
</nav>
<section>
<h2>Work</h2>
<ul>
<!-- Work details will be added here -->
</ul>
</section>
<section>
<h2>Projects</h2>
<ul>
<!-- Project details will be added here -->
</ul>
</section>
<footer>
<a href="https://github.com/SamuelYLay">GitHub</a>
<a href="https://www.linkedin.com/in/samuel-lay-26a5a0261/">LinkedIn</a>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>