-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGifs.html
72 lines (65 loc) · 1.78 KB
/
Gifs.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
<!DOCTYPE html>
<html>
<head>
<meta charset utf-8>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Michelle Green</title>
<style>
body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color:white;
background-color:black;
}
header {
font-family:'Times New Roman', Times, serif;
font-size: 28px;
color: black;
background-color: deeppink;
text-align: center;
}
.menu {
word-spacing: 40px;
font-size:20px;
max-width:800px;
text-align:center;
font-family:Gill Sans;
}
a:link {
color:white;
background-color:transparent;
text-decoration: none;
}
a:visited {
color:white;
background-color:transparent;
text-decoration: none;
}
h1 {
font-size:36px;
text-align:center;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
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"> Video</a>
<a href="Animations.html"> Animations</a>
<a href="Classic.html"> Marketing</a>
<a href="Gifs.html"> Gifs</a>
</div>
</head>
<body>
<header>
<h1>Gifs</h1>
</header>
</body>
<footer>
© 2035 by Michelle Green
</footer>
</html>