-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (42 loc) · 1.58 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
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your GitHub Pages site">
<title>My GitHub Pages Website</title>
<link rel="stylesheet" href="styles.css"> <!-- Optional: Link to an external CSS file -->
</head>
<body>
<header>
<h1>Welcome to My GitHub Pages Website!</h1>
<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>
<section id="about">
<h2>About Me</h2>
<p>This is a short paragraph about you or your project. You can write about your background, skills, or anything else you like!</p>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li><a href="https://github.com/your-username/your-project">Project 1</a></li>
<li><a href="https://github.com/your-username/your-project">Project 2</a></li>
<li><a href="https://github.com/your-username/your-project">Project 3</a></li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>If you want to get in touch, you can email me at <a href="mailto:[email protected]">[email protected]</a>.</p>
</section>
<footer>
<p>Created with ❤️ by Your Name</p>
</footer>
<script src="script.js"></script> <!-- Optional: Link to an external JS file -->
</body>
</html>