-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideo.html
66 lines (58 loc) · 1.57 KB
/
Video.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width", initial-scale="1.0">
<title>Michelle Green</title>
<style>
h1 {
font-size: 36px;
font-weight: bold;
}
header {
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color:black;
background-color:red;
padding:20px;
text-align:center;
}
.menu {
font-family:Gill Sans;
text-align: center;
max-width:800px;
font-size: 20px;
margin: 0px;
word-spacing: 40px;
}
a:link {
text-decoration: none;
color: white;
}
a:visited {
text-decoration: none;
color: white;
}
footer {
font-size:10px;
color: white;
text-align: center;
}
</style>
<div class="menu">
<a href="index.html"> Home</a>
<a href="About.html">About</a>
<a href="Video.html"> Videos</a>
<a href="Animations.html"> Animations</a>
<a href="Classic.html"> Marketing</a>
<a href="Gifs.html"> Gifs</a>
</div>
</head>
<body>
<header>
<h1>Videos</h1>
</header>
</body>
<footer>
© 2035 by Michelle Green
</footer>
</html>