-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (25 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chadwick Boseman Tribute Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<main id="main">
<title id="title">Chadwick Boseman Tribute Page</title>
<figure id="img-div">
<img id="image"
src="https://whyy.org/wp-content/uploads/2020/08/AP_20242177390507-768x511.jpg"
alt="Wakanda Forever">
<figcaption id="img-caption">Chadwick signalling "Wakanda Forever"</figcaption>
</figure>
<details id="tribue-info">
<summary>What's this page about?</summary>
<p id="tribute-info">This page is a short tribute to the life of Chadwick Boseman. You can find factual details of his life at this <a id="tribute-link" target="_blank" href="https://en.wikipedia.org/wiki/Chadwick_Boseman" alt="Chadwick Boseman Wiki">Wikipedia</a> page.</p>
</details>
</main>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>