-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 2.04 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
<!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>DC | Heroes</title>
<!-- google fonts link {poppins} -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Oleo+Script&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" />
</head>
<body>
<header>
<div class="heading">
<h1>JUSTICE LEAGUE</h1>
</div>
<div class="description">
<h4>WHO WE ARE</h4>
<p>
We are a team of the world's greatest superheroes
<br />
together we fight crime and injustice
<br />
as Earth's first line of defense.
</p>
</div>
</header>
<section>
<div class="photo-1 photo">
<img src="images/superman1.jpeg" alt="photo1" />
<p class="slant">Clark Kent</p>
<p class="name">Superman</p>
</div>
<div class="photo-2 photo">
<img src="images/batman1.png" alt="photo2" />
<p class="slant">Bruce Wayne</p>
<p class="name">Batman</p>
</div>
<div class="photo-3 photo">
<img src="images/wonderwoman.jpeg" alt="photo3" />
<p class="slant">Diana Prince</p>
<p class="name">Wonder Woman</p>
</div>
<div class="photo-4 photo">
<img src="images/flash.png" alt="photo4" />
<p class="slant">Berry Hallen</p>
<p class="name">Flash</p>
</div>
<div class="photo-5 photo">
<img src="images/aquaman.jpeg" alt="photo5" />
<p class="slant">Arthur Cally</p>
<p class="name">Aquaman</p>
</div>
<div class="photo-6 photo">
<img src="images/cyborg.png" alt="photo6" />
<p class="slant">Victor Stones</p>
<p class="name">Cyborg</p>
</div>
</section>
</body>
</html>