-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
37 lines (34 loc) · 1002 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Personal Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to My Personal Website!</h1>
</header>
<main>
<section>
<h2>Certifications</h2>
<ul>
<li><a href="https://github.com/yourusername/certification1">Certification 1</a></li>
<li><a href="https://github.com/yourusername/certification2">Certification 2</a></li>
<li><a href="https://github.com/yourusername/certification3">Certification 3</a></li>
</ul>
</section>
<section>
<h2>Projects</h2>
<ul>
<li><a href="https://github.com/yourusername/project1">Project 1</a></li>
<li><a href="https://github.com/yourusername/project2">Project 2</a></li>
<li><a href="https://github.com/yourusername/project3">Project 3</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2023 Your Name</p>
</footer>
</body>
</html>