-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (106 loc) · 3.22 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Green Scorpion</title>
<style>
body {
font-family: Cambria;
margin: 0;
padding: 0;
background-color: black;
}
header {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background-color:green;
color: black;
text-align: center;
padding: 30px;
}
h1 {
font-size: 36px;
}
p {
text-align:center;
font-size:30px;
}
h2 {
text-align:center;
font-size:25px;
margin-top:50px;
padding: 80px;
}
footer {
font-family:'Times New Roman';
font-size: 10px;
text-align: center;
color: white;
}
.grid-container {
display:grid;
grid-template-columns:auto auto auto auto;
background-color:white;
}
.grid-item {
background-color:black;
color:green;
font-size:25px;
text-align: center;
padding:10px;
}
.menu {
margin: 0 px;
max-width: 800px;
text-align: center;
word-spacing: 40px;
font-size: 15px;
font-family: Gill Sans;
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
</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>Michelle Green</h1>
<p>Web Designer | Digital Marketer | Graphic Specialist</p>
</header>
<h2>Previous Work</h2>
<div class="grid-container">
<div class="grid-item">
<img src="icons/video camera.png" width="120px" alt="icon of video camera">
</div>
<div class="grid-item">
<img src="icons/green brush.png" width="120px" alt="icon of paint brush">
</div>
<div class="grid-item">
<img src="icons/green picture.png" width="120px" alt="icon of picture frame">
</div>
<div class="grid-item">
<img src="icons/computer.png" width="120px" alt="computer icon">
</div>
<div class="grid-item">Videos</div>
<div class="grid-item">Animation</div>
<div class="grid-item">Classic</div>
<div class="grid-item">Gifs</div>
</div>
</body>
<footer>© 2035 by Michelle Green</footer>
</html>