-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
55 lines (48 loc) · 1.18 KB
/
template.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
49
50
51
52
53
54
55
<!DOCTYPE html>
<style>
.top-bar {
background-color: #333;
color: #fff;
padding: 10px 0;
}
.top-bar ul {
list-style: none;
text-align: center;
}
.top-bar ul li {
display: inline-block;
margin: 0 15px;
}
.top-bar ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
.top-bar ul li a:hover {
text-decoration: underline;
}
</style>
<html>
<head>
<title>foss games</title>
<style>
body {
font-family: 'Arial', sans-serif;
color: rgb(0, 0, 0);
font-size: 16px;
}
</style>
</head>
<body>
<div class="top-bar">
<ul>
<li><div class="name">foss games</div></li>
<a style="color: #333;">I know this is sketchy but it'm stupid af and I can't figure out how to move the name to the left, if you know how to, git push me the fix</a>
<li><a href="/index.html">games</a></li>
<li><a href="https://github.com/umikali222/umikali.eu">github</a></li>
<li><a href="/about.html">about</a></li>
</ul>
</div>
<br>
</body>
</html>