-
-
Notifications
You must be signed in to change notification settings - Fork 662
/
Copy pathnavbar.html
67 lines (56 loc) · 1.03 KB
/
navbar.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
56
57
58
59
60
61
62
63
64
65
66
67
<!--NAVBAR-->
<style>
* {
padding: 0;
margin: 0;
}
body {
font-family: Arial, Tahoma, Serif;
color: #fff;
}
nav {
display: flex;
justify-content:space-between;
align-items: center;
padding: 1rem 2rem;
background: #000;
}
nav ul {
display: flex;
list-style: none;
}
nav li {
padding-left: 1rem;
}
nav a {
text-decoration: none;
color: #fff
}
/*
Extra small devices (phones, 600px and down)
*/
@media only screen and (max-width: 600px) {
nav {
flex-direction: column;
text-align: center;
}
nav ul {
flex-direction: column;
padding-top: 0.5rem;
}
nav li {
padding: 0.5rem 0;
}
}
</style>
<nav>
<h2>Interstellar</h2>
<ul>
<li><a href="/./">Home</a></li>
<li><a href="/play.html">Games</a></li>
<li><a href="/apps.html">Apps</a></li>
<li><a href="/math.html">Exploits</a></li>
<li><a href="/search.html">Proxies</a></li>
<li><a onclick="widgetBot()">Widgetbot</a></li>
</ul>
</nav>