-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgithub.html
More file actions
70 lines (61 loc) · 2.05 KB
/
github.html
File metadata and controls
70 lines (61 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Page</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f5f5f5;
margin: 0;
padding: 0;
text-align: center;
}
header {
background-color: #333;
color: white;
padding: 1em;
font-size: 1.5em;
}
main {
padding: 2em;
}
footer {
background-color: #333;
color: white;
padding: 1em;
position: fixed;
bottom: 0;
width: 100%;
}
a {
color: #0366d6;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>GitHub Page</h1>
</header>
<nav style="background-color: #555; padding: 10px; text-align: center;">
<a href="#" style="color: #fff; text-decoration: none; margin: 0 10px;">Home</a>
<a href="contact.html" style="color: #fff; text-decoration: none; margin: 0 10px;">Contact</a>
<a href="privacy.html" style="color: #fff; text-decoration: none; margin: 0 10px;">Privacy</a>
<a href="#" style="color: #fff; text-decoration: none; margin: 0 10px;">Git</a>
<a href="#" style="color: #fff; text-decoration: none; margin: 0 10px;">GitHub</a>
</nav>
<main>
<p>Welcome to my GitHub dummy page. This is a simple page for demonstration purposes.</p>
<p>Feel free to explore and check out my <a href="https://github.com/example" target="_blank">GitHub profile</a>.</p>
</main>
<footer style="background-color: #333; color: #fff; text-align: center; padding: 10px; position: fixed; bottom: 0; width: 100%;">
<p>© 2023 Website. All rights reserved.</p>
</footer>
</body>
</html>