-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (96 loc) · 2.97 KB
/
Copy pathindex.html
File metadata and controls
100 lines (96 loc) · 2.97 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My GitHub Pages Site</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 1em 0;
text-align: center;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 1em;
}
nav ul li a {
color: white;
text-decoration: none;
}
section {
padding: 2em;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em 0;
position: fixed;
bottom: 0;
width: 100%;
}
.container {
max-width: 1200px;
margin: auto;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Welcome to My GitHub Pages Site</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>
</div>
</header>
<section id="about" class="container">
<h2>About Me</h2>
<p>This is a simple HTML file hosted on GitHub Pages. Here you can add more details about yourself.</p>
</section>
<section id="projects" class="container">
<h2>Projects</h2>
<p>Here you can list your projects. For example:</p>
<ul>
<li>Project 1: Description</li>
<li>Project 2: Description</li>
<li>Project 3: Description</li>
</ul>
</section>
<section id="contact" class="container">
<h2>Contact</h2>
<p>You can reach me at:</p>
<ul>
<li>Email: <a href="mailto:youremail@example.com">youremail@example.com</a></li>
<li>Twitter: <a href="https://twitter.com/yourprofile" target="_blank">@yourprofile</a></li>
<li>LinkedIn: <a href="https://linkedin.com/in/yourprofile" target="_blank">Your LinkedIn</a></li>
</ul>
</section>
<footer>
<div class="container">
<p>© 2024 Your Name</p>
<p>
<a href="https://github.com/yourprofile" target="_blank">GitHub</a> |
<a href="https://twitter.com/yourprofile" target="_blank">Twitter</a> |
<a href="https://linkedin.com/in/yourprofile" target="_blank">LinkedIn</a>
</p>
</div>
</footer>
</body>
</html>