-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathequip_timer.html
61 lines (50 loc) · 1.97 KB
/
equip_timer.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
<!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" />
<title>Equip & Fairy Build Timer</title>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/equip_timer.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css">
</head>
<body>
<div class="navbar">
<div class="navbar_center">
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">Quick Info
<i class="zmdi zmdi-chevron-down"></i>
</button>
<div class="dropdown-content">
<a href="tdoll_stat.html">T-Doll</a>
<a href="#">coming soon</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Build Timer[OUTDATE]
<i class="zmdi zmdi-chevron-down"></i>
</button>
<div class="dropdown-content">
<a href="equip_timer.html">Equip</a>
<a href="#">coming soon</a>
</div>
</div>
</div>
</div>
<div class="container">
<h1>Equip & Fairy Build Timer</h1>
<div id="SearchWrapper">
<input type="text" name="SearchBar" id="SearchBar"
placeholder="search by name (i.e. PEQ) or timer (i.e. 0:49 or 049)" />
</div>
<ul id="Equip_List"></ul>
</div>
<script src="js/equip_timer.js"></script>
<div class="footer">
Girls' Frontline is Copyright SUNBORN Network Technology Co., Ltd. All images and names owned and trademarked by SUNBORN Network Technology Co., Ltd. are property of SUNBORN Network Technology Co., Ltd.
<br> This site are fanproject and I also not affiliated with it(mentioned above).
</div>
</body>
</html>