-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (49 loc) · 2.03 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
<!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">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="adaptive.css">
<link rel="shortcut icon" href="icons/favicon.webp" type="image/webp">
<script type="module" src="scripts/index.js"></script>
<script src="scripts/stats.js"></script>
<title>Overwatch 2 | Counters</title>
</head>
<body>
<header>
<div class="title">
<h1><span class="ow2-full">Overwatch 2</span><span class="ow2-short">OW2</span> | Counters chart</h1>
<p><b>Hero Icon</b>: <b>Click</b> to open the wiki | <b>Hover</b> to see the description</p>
<p style="color: coral;"><i>Only the description is translated</i></p>
</div>
<div class="role-selector">
<button data-role="tank">Tank</button>
<button data-role="damage">Damage</button>
<button data-role="support">Support</button>
</div>
<!-- <div class="search">
<label>Search</label>
<input type="text">
<button>Clear</button>
</div> -->
<div class="lang-selector">
<img src="icons/flags/en.png" alt="EN" data-lang="en">
<img src="icons/flags/ua.png" alt="UA" data-lang="ua">
</div>
</header>
<article class="counter-table"></article>
<footer>
<a class="repo" href="https://github.com/AyQWERTY/Overwatch-2-Counters" target="_blank">
<img class="repo" src="icons/github-mark.svg" alt="github-mark"> Github repo
</a>
</footer>
<nav class="mobile">
<a href="#tank"><img src="icons/classes/Tank.webp" alt="tank"></a>
<a href="#damage"><img src="icons/classes/Damage.webp" alt="tank"></a>
<a href="#support"><img src="icons/classes/Support.webp" alt="tank"></a>
</nav>
</body>
</html>