-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.51 KB
/
Copy pathindex.html
File metadata and controls
45 lines (44 loc) · 1.51 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
<!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>Homepage</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<nav class="navbar">
<h3 class="heading--3">Black Tiger</h3>
<ul class="navigation">
<li><a href="./index.html">Origin</a></li>
<li><a href="./incarnations.html">Incarnations</a></li>
<li><a href="./finishers.html">Finishers</a></li>
</ul>
</nav>
<div class="heroText">
<h1 class="heroTitle">The Black Tiger</h1>
<h2 class="heroSub">Japan Pro Wrestling Icon</h2>
</div>
</header>
<section>
<div class="origin">
<h4>The Black Tigers Origin Story</h4>
<figure class="home-img">
<img
src="https://slack-imgs.com/?c=1&o1=ro&url=https%3A%2F%2Fluchavavoom.com%2Fwp-content%2Fuploads%2F2018%2F04%2Fblack-tiger-mask.jpg"
alt="Black Tiger"
/>
<figcaption>
The character is drawn from the original Japanese Tiger Mask anime.
The trademark of the character is to always wear a mask and tights
in an almost identical design to that of his perennial rival only
with entirely black and silver coloring.
</figcaption>
</figure>
</div>
</section>
<footer></footer>
</body>
</html>