-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (28 loc) · 1.09 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
<!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>Did your NFL Team Win?</title>
<link rel="stylesheet" href="./dist/css/style.css">
</head>
<body>
<section class="hero hero--has-overlay hero--full-height">
<div class="hero__content wrapper">
<h1 class="hero__title">Did Your NFL Team Win?</h1>
<p>Check if your NFL team won. Enter your team's
name below:</p>
<input id="search" type="text" placeholder="Enter an NFL Team Name. Ex -
'Jaguars'">
<a id="btn-search" class="btn btn--block">Search</a>
<div id="loading" class="loading-result">
<span class="loader loader-bars"><span> </span></span>
<span class="loading-text">Checking scores...</span>
</div><!--/.loading-result-->
<div id="results"></div>
</div><!-- /.hero__content -->
</section><!-- /.hero -->
<script src="./dist/js/bundle.js"></script>
</body>
</html>