-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (36 loc) · 939 Bytes
/
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>
<head>
<title>My Personal Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h1>About Me</h1>
<p>Some information about me.</p>
</section>
<section id="projects">
<h1>My Projects</h1>
<p>Details of some of my projects.</p>
</section>
<section id="contact">
<h1>Contact Me</h1>
<p>How to reach me.</p>
</section>
</main>
<footer>
<p>Copyright © 2023 Me (not really)</p>
</footer>
<script src="script.js"></script>
</body>
</html>