-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/css/style.css" />
<title>Project X-Men</title>
</head>
<body>
<header class="header"></header>
<main>
<section class="character-selection">
<h1 class="title">Select a character</h1>
<ul class="character-list">
<li class="character" id="cyclops">
<img src="./src/images/card-ciclope.jpg" alt="Character Cyclops" />
</li>
<li class="character" id="jean-gray">
<img
src="./src/images/card-jean-grey.jpg"
alt="Character Jean-Grey"
/>
</li>
<li class="character" id="black-lynx">
<img
src="./src/images/card-lince-negra.jpg"
alt="Character Black Lynx"
/>
</li>
<li class="character" id="storm">
<img src="./src/images/card-tempestade.jpg" alt="Character Storm" />
</li>
<li class="character" id="wolverine">
<img
src="./src/images/card-wolverine.jpg"
alt="Character Wolverine"
/>
</li>
<li class="character" id="nightcrawler">
<img
src="./src/images/card-noturno.jpg"
alt="Character Nightcrawler"
/>
</li>
<li class="character" id="magneto">
<img src="./src/images/card-magneto.jpg" alt="Character Magneto" />
</li>
<li class="character" id="vampire">
<img src="./src/images/card-vampira.jpg" alt="Character Vampire" />
</li>
</ul>
</section>
<section class="selected-character">
<img
src="./src/images/card-ciclope.png"
alt="Character Selected"
class="big-character"
/>
<div class="character-information">
<h2 class="character-name" id="character-name">Cyclops</h2>
<p class="character-description" id="character-description">
He has the power to fire optic blasts by an accident that happened
to him as a child, but he cannot control them.
</p>
</div>
</section>
</main>
<script src="./js/script.js"></script>
</body>
</html>