-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (60 loc) · 2 KB
/
index.html
File metadata and controls
67 lines (60 loc) · 2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Final Project</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1 id="top">Final Project</h1>
</header>
<main>
<p>Replace all of the images with images of your choice and appropriate captions. Include two paragraphs about the contents of your site. Do not remove the skip to top link.</p>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Eaque blanditiis facilis excepturi exercitationem modi! Ea cum dicta tenetur eos ut dolores debitis ipsam incidunt. Quam debitis culpa vitae harum temporibus?</p>
<div class="grid">
<figure>
<img src="images/Red.jpeg" alt="Red">
<figcaption>Red</figcaption>
</figure>
<figure>
<img src="images/Orange.png" alt="Orange">
<figcaption>Orange</figcaption>
</figure>
<figure>
<img src="images/Yellow.png" alt="Yellow">
<figcaption>Yellow</figcaption>
</figure>
<figure>
<img src="images/Green.png" alt="Green">
<figcaption>Green</figcaption>
</figure>
<figure>
<img src="images/Blue.png" alt="Blue">
<figcaption>Blue</figcaption>
</figure>
<figure>
<img src="images/Indigo.jpeg" alt="Indigo">
<figcaption>Indigo</figcaption>
</figure>
<figure>
<img src="images/Purple.png" alt="Purple">
<figcaption>Purple</figcaption>
</figure>
<figure>
<img src="images/Pink.jpeg" alt="Pink">
<figcaption>Pink</figcaption>
</figure>
<figure>
<img src="images/White.png" alt="White">
<figcaption>White</figcaption>
</figure>
</div>
</main>
<footer>
<a href="#top">Jump to the Top</a>
</footer>
</body>
</html>