-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 987 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Personal Website</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="images.html">Images</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to My Personal Website</h1>
<p>Hello! I'm Yee Siang. This is my personal website where I share my thoughts, experiences, and work.</p>
</main>
<footer>
<p>© 2024 Yee Siang. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>