-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (46 loc) · 1.47 KB
/
index.html
File metadata and controls
48 lines (46 loc) · 1.47 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" />
<title>Tribute Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="main">
<h1 id="title">Arsene Wenger</h1>
<div id="img-div">
<a
id="tribute-link"
target="_blank"
href="https://www.youtube.com/watch?v=5RRuYr76BBE"
>
<img
id="image"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Arsene_Wenger_JHayes_%28cropped%29.jpg/640px-Arsene_Wenger_JHayes_%28cropped%29.jpg"
alt="Picture of Arsene Wenger"
width="20%"
height="20%"
/>
</a>
<figcaption id="img-caption">
Arsene Wenger - "When you look at people who are successful, you will
find that they aren't the people who are motivated, but have
consistency in their motivation"
</figcaption>
</div>
<p id="tribute-info">
<b> Arsene wenger Achievements: </b>
</p>
<ul>
<li>Double of 2002</li>
<li>Hello world</li>
<li>Invincibles</li>
<li>Seven FA cups</li>
<li>Remaining above Tottenham</li>
</ul>
</div>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>