-
Notifications
You must be signed in to change notification settings - Fork 0
/
animal_farm.html
61 lines (57 loc) · 1.44 KB
/
animal_farm.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
<!DOCTYPE html>
<html lang="en-US">
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #a19788;
border-radius: 10px;
font-weight: bold;
font-family: 'Trebuchet MS', sans-serif;
display: flex;
justify-content: space-between;
align-items: center;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 15px;
text-decoration: none;
border-radius: 10px;
}
li a:hover {
background-color: #4a646c;
}
</style>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="Animal Farm, George Orwell">
<meta name="author" content="Jason Walks">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<iframe src="demo_iframe.htm" style="border:none;" name="iframe_a" height="700px" width="100%" title="Iframe Example"></iframe>
<ul>
<li><a href="#ch1">I</a></li>
<li><a href="#ch2">II</a></li>
<li><a href="#ch3">III</a></li>
<li><a href="#ch4">IV</a></li>
<li><a href="#ch5">V</a></li>
<li><a href="#ch6">VI</a></li>
<li><a href="#ch7">VII</a></li>
<li><a href="#ch8">VIII</a></li>
<li><a href="#ch9">IX</a></li>
<li><a href="#ch10">X</a></li>
</ul>
</body>
<footer>
</footer>
</html>