-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
98 lines (87 loc) · 2.31 KB
/
About.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Michelle Green</title>
<style>
body {
font-family: Cambria;
margin: 0;
padding: 0;
background-color: #000000;
}
header {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color: red;
color: #000000;
text-align: center;
padding: 20px;
}
h1 {
font-size: 36px;
}
p {
font-size: 18px;
font-family:'Lucida Sans';
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.container2 {
text-align: center;
}
.menu {
margin: 0 px;
max-width: 800px;
text-align: center;
word-spacing: 40px;
font-size: 20px;
font-family: Gill Sans;
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
footer {
font-size: 10px;
font-family:'Times New Roman', Times, serif;
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"> Classic</a>
<a href="Gifs.html"> Gifs</a>
</div>
</head>
<body>
<header>
<h1>About</h1>
</header>
<div class="container">
<h2>About Me</h2>
</div>
<div class="container2">
<video src="About Me.mp4" type="video/mp4" controls width="640px" height="360px">
</video>
</div>
</body>
<footer>
© 2035 by Michelle Green
</footer>
</html>