-
Notifications
You must be signed in to change notification settings - Fork 1
/
36288.html
75 lines (60 loc) · 1.22 KB
/
36288.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
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Puzzle #5</title>
<style>
body, html {
height: 100%;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.navbar {
overflow: hidden;
background-color: #6d6e72;
position: fixed;
bottom: 0;
width: 100%;
height: 10%;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding-left: 5%;
padding-right: 5%;
padding-top: 2.5%;
padding-bottom: 2.5%;
text-decoration: none;
}
.navbar a:hover {
background: #f1f1f1;
color: black;
}
.navbar a.active {
background-color: #106747;
color: #99cbec;
}
.main {
margin: 2%;
}
</style>
</head>
<body>
<div class="main">
<h1>Congratulations!</h1>
<p>You've made it to puzzle number 5, you're one step closer to the end. </p>
<p>Here's the link to the next problem: <a href="https://docs.google.com/document/d/1dAIV6O-X4oe7MyDHewPDHkOV-GZohFFTdtT9y1PB32g/edit?usp=sharing">Link #5</a></p>
</div>
<div class="navbar">
<a href="">Tracker</a>
<a href="">1</a>
<a href="">2</a>
<a href="">3</a>
<a href="">4</a>
<a href=""class="active">5</a>
<a href="">6</a>
</div>
</body>
</html>