-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (82 loc) · 2.8 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
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<link rel="stylesheet" href="/scss/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css" integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>Heroes Tips</title>
</head>
<body>
<div class="banner">
<div class="selectHero">
<div class="error">
<h4><span class="userSearch"></span> is not a real hero!</h4>
</div>
<h2>Search your hero</h2>
<div class="container">
<form>
<input type="text" class="searchHero">
<input type="button" class="button" value="GO">
</form>
<ul class="suggestions">
</ul>
</div>
</div>
<div class="displayNone heroInfo">
<div class="return">
<i class="fas fa-arrow-left fa-4x"></i>
</div>
<div class="heroInfoGrid">
<div class="slide-in align-left heroImg">
<img src="" class="character"/>
</div>
<div class="slide-in align-top statsCont">
<!-- table data goes here -->
<table>
<tbody>
<tr>
<th>Win Rate</th>
<th>Popularity</th>
</tr>
<tr>
<td>Coming Soon</td>
<td>Coming Soon</td>
</tr>
</tbody>
</table>
</div>
<div class="slide-in align-right matchups">
<div class="strong">
<h2>Strong Against:</h2>
<img src="https://via.placeholder.com/70x70" alt="" class="heroStrong">
<img src="https://via.placeholder.com/70x70" alt="" class="heroStrong">
<img src="https://via.placeholder.com/70x70" alt="" class="heroStrong">
</div>
<div class="weak">
<h2>Weak Against:</h2>
<img src="https://via.placeholder.com/70x70" alt="" class="heroWeak">
<img src="https://via.placeholder.com/70x70" alt="" class="heroWeak">
<img src="https://via.placeholder.com/70x70" alt="" class="heroWeak">
</div>
</div>
<div class="slide-in align-bottom tips">
<h2>Tips:</h2>
<ul class="tipList">
</ul>
</div>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> -->
<script src="/js/script.js"></script>
<!-- <script src="/js/scroll.js"></script> -->
<!-- Fade in effects -->
<!-- <script src="https://unpkg.com/aos@next/dist/aos.js"></script> -->
<!-- <script>AOS.init();</script> -->
</body>
</html>