-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal_exam_css_component.html
More file actions
48 lines (45 loc) · 2.07 KB
/
final_exam_css_component.html
File metadata and controls
48 lines (45 loc) · 2.07 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
<!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">
<!-- DO NOT USE HTML5 reset -->
<link rel="stylesheet" type="text/css" href="css/final_exam_css_component_starter.css">
<link rel="stylesheet" type="text/css" href="css/final_exam_css_component.css">
<title>Makeup Exam</title>
</head>
<body>
<a href ="#maincontent">Skip to main content</a>
<main id = "maincontent">
<h1>Winter 2022 Exam</h1>
<div class="container">
<figure><img src="images/snowy-peak.jpg" alt="" width="100" />
<figcaption>a snowy mountain top</figcaption>
</figure>
<figure><img src="images/mountain.jpg" alt="" width="100" /> <figcaption>mountain skyline</figcaption>
</figure>
<figure><img src="images/leaves.jpg" alt="" width="100"/> <figcaption>leaves on a black background</figcaption>
</figure>
<figure><img src="images/flowers.jpg" alt="" width="100" /> <figcaption>pink budding flowers on a tree</figcaption>
</figure>
<figure><img src="images/fog.jpg" alt="" width="100" /> <figcaption>aerial foggy highway</figcaption>
</figure>
<figure><img src="images/beach.jpg" alt="" width="100" /> <figcaption>a sandy beach</figcaption>
</figure>
<figure><img src="images/lake.jpg" alt="" width="100" /> <figcaption>lake next to mountains</figcaption>
</figure>
<figure><img src="images/turbine.jpg" alt="" width="100"/> <figcaption>turbines in the clouds</figcaption>
</figure>
<figure><img src="images/trees.jpg" alt="" width="100" /> <figcaption>looking at the sky through foliage</figcaption>
</figure>
</div>
<footer>
<p>University of Michigan School of Information <br/>
© Colleen van Lent, Drew Asselin - Web Design 2019-2020
<p>This final exam was completed by only the student. No outside assistance allowed.</p>
</footer>
</div>
</main>
</body>
</html>