-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (68 loc) · 2.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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>SuperHero app</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Stats<span>War</span></h1>
</header>
<div class="carousel">
<div class="carousel-item">
<div class="red"><img
src="https://images.unsplash.com/photo-1509347528160-9a9e33742cdb?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8NHx8YmF0bWFufGVufDB8fDB8fA%3D%3D&auto=format&fit=crop&w=500&q=60"
alt="First slide"></div>
</div>
<div class="carousel-item">
<div class="green"> <img
src="https://p4.wallpaperbetter.com/wallpaper/315/952/991/thanos-infinity-gauntlet-wallpaper-preview.jpg"
alt="Second slide"></div>
</div>
<div class="carousel-item">
<div class="yellow">
<div class="carousel-item">
<img src="https://p4.wallpaperbetter.com/wallpaper/315/952/991/thanos-infinity-gauntlet-wallpaper-preview.jpg"
alt="Second slide">
</div>
</div>
<div class="carousel-item">
<div class="violet"> <img
src="https://p4.wallpaperbetter.com/wallpaper/315/952/991/thanos-infinity-gauntlet-wallpaper-preview.jpg"
alt="Second slide"></div>
</div>
</div>
</div>
<div class="word">
<p>Since the birth of earth, we've always compared the superheroes whom has saved the world from crimes and evils. Now let's check their statistics with "Truth and Justice".</p>
</div>
<div class="search">
<input type="text" class="search1" placeholder="input superhero name" id="searchInput1" onkeyup="search()">
<h1>VS</h1>
<input type="text" class="search2" placeholder="input superhero name" id="searchInput2">
<button id="searchbtn">SEARCH</button>
</div>
<div id="searchList"></div>
<div class="container">
<div class="compare">
<div class="Hero1">
<dive id="name1"></dive>
<div id="heroImg"></div>
<div id="herostats"></div>
</div>
<div class="Hero2">
<div id="heroImg2"></div>
<div id="herostats2"></div>
</div>
<div id="biography2"></div>
</div>
</div>
<footer>
<a href="https://wa.me/+23408084335803">optimus©</a>
</footer>
<script src="script.js"></script>
</body>
</html>