-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (87 loc) · 1.76 KB
/
index.html
File metadata and controls
97 lines (87 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 20px;
}
nav {
display: flex;
justify-content: space-around;
background-color: lightgrey;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
font-size: 18px;
}
nav a {
display: block;
display: flex;
padding: 20px 20px;
align-items: center;
text-decoration: none;
color: black;
}
nav a:hover {
background-color: grey;
color: white;
}
main {
padding: 10px 20px;
background-color: white;
}
main p {
margin: 20px 0 20px 0;
font-size: 16px;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
margin-top: auto;
}
footer cp {
margin: 0 0 20px 0;
font-size: 16px;
}
</style>
<title>Sebbog Home Page</title>
</head>
<body>
<header>
<h1 style="display: inline;">Welcome to My Home Page</h1>
</header>
<nav>
<ul>
<li><a href="/wiki">Wiki</a></li>
<li><a href="/beans">Beans</a></li>
<li><a href="/me">Me</a></li>
<li><a href="/ai">AI</a></li>
</ul>
</nav>
<main>
<p><a href="https://www.youtube.com/channel/UCwpH0BOw4G-XD_ZioODxySQ">Subscribe</a></p>
<p><a href="https://www.twitter.com/@Sebbog1">Follow</a></p>
</main>
<footer>
<cp>Last edited on December 31, 2022</cp>
</footer>
</body>
</html>