-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
188 lines (177 loc) · 6.59 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head prefix="og: https://ogp.me/ns#">
<!-- Required meta tags always come first -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Link Preview Tags -->
<meta property="og:title" content="Burning Crusade Talent Calculator" />
<meta
property="og:description"
content="Come and test out Burning Crusade talent builds as you please, share with your friends, without spending a respec cost"
/>
<meta
property="og:image"
content="./images/Cover_Photo.jpg"
/>
<meta name="twitter:site" content="@username-example" />
<meta
name="twitter:card"
content="summary || summary_large_image || player || app"
/>
<meta name="twitter:creator" content="@username-example" />
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<!-- Additional CSS must go after Bootstrap CSS -->
<link
rel="stylesheet"
href="node_modules/font-awesome/css/font-awesome.min.css"
/>
<link href="css/styles.css" rel="stylesheet" />
<link rel="shortcut icon" href="images/favicon.ico" />
<title>World of Warcraft Burning Crusade Search Engine</title>
<link rel="image_src" href="./images/Cover_Photo.jpg" />
</head>
<body class="bkground_dark">
<center>
<header class="bkground">
<div class="row">
<div class="col col-12" style="display: flex; align-items: center;">
<a class="nav-link" href="index.html" style="width: 20%;">
<img class="TBC_Logo" src="./images/BC_Logo.png"></img>
</a>
<h3 class="header-under-logo">World of Warcraft Database</h3>
</div>
</div>
</header>
<nav
class="navbar navbar-dark navbar-expand-sm navbariconstyling sticky-top"
>
<div class="container">
<a class="navbar-brand" href="index.html"
><img src="images/BC_W_Logo.png" height="30" width="30"
/></a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#bcNavbar"
>
<span class="fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="bcNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="item-search-results.html"
><i class="fa fa-shield fa-lg fa-fw"></i>Items</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="spells-search-results.html"
><i class="fa fa-book fa-lg fa-fw"></i>Spells</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="NPCs-search-results.html"
><i class="fa fa-user fa-lg fa-fw"></i>NPCs</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="arena-point-calculator.html"
><i class="fa fa-shield fa-lg fa-fw"></i>Arena Calculator</a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="Wallpaper_Illidan img-fluid img-thumbnail">
<div class="container">
<div class="row mt-5">
<div class="col col-sm-12 col-xs-6 mx-auto">
<form id="searchForm" method="get">
<div class="row mt-5">
<div
class="col col-sm-12 col-xs-6 mx-auto"
style="position: relative"
>
<input
id="searchBar"
name="userInput"
type="text"
placeholder="Enter search here: "
class="groove search animated-search-bar"
style="
position: absolute;
left: 22%;
top: 50%;
width: 50%;
height: 45px;
margin-top: 0px !important;
"
/>
<button
id="searchButton"
type="submit"
class="
groove
search
fa fa-search
execute_search
animated-search-button
"
style="
position: absolute;
left: 73%;
top: 20%;
width: 5%;
height: 45px;
"
></button>
</div>
</div>
<div class="row mt-5">
<div class="col col-sm-7 mx-auto mt-3">
<select
required
class="form-control dropdown animated-select"
id="filterChoice"
>
<option hidden disabled selected value>
Search Category
</option>
<option class="custom-dropdown">Items</option>
<option class="custom-dropdown">Spells</option>
<option class="custom-dropdown">NPCs</option>
</select>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="container Bottom_Nav_of_Site">
<div class="row">
<div class="col-12">
<h3 class="header-under-logo">
Intellectual Property Reserved to Blizzard Entertainment
</h3>
</div>
</div>
</div>
<div class="container Bottom_Links_Social"></div>
</center>
<!-- jQuery must come first, then Popper.js, then the Bootstrap JavaScript plugins.-->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="js/generateAccessToken.js"></script>
<script src="js/main.js"></script>
<script src="js/index.js"></script>
<script src="https://cdn.rawgit.com/Ademking/CoolConsole/23c8707c/CoolConsole.min.js"></script>
</body>
</html>