-
Notifications
You must be signed in to change notification settings - Fork 163
/
index.html
43 lines (38 loc) · 872 Bytes
/
index.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
<!DOCTYPE html>
<html><head>
<title>TheFlyingBlock | Home</title>
<style>
/* Add a black background color to the top navigation */
.topnav {
background-color: black;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #4CAF50;
color: white;
}
</style></head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html">Home</a>
<a href="game.html">Game</a>
<a href="info.html">Instructions</a>
</div>
<h1>TheFlyingBlock</h1>
<p>Fly a block for as long as you can!</p>