-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.23 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
<!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" href="normalize.css">
<link rel="stylesheet" href="float-grid.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>State Capitol Quiz</title>
</head>
<body>
<header class="row" role="banner">
<div class="col-12">
<h1 class="title centered">State Capitol Quiz</h1>
<h2 class="heading centered">Think you know your state capitols?</h2>
</div>
</header>
<main class="row centered" role="main" aria-live="assertive">
<img class="american-flag-icon" src="./icons/american-flag-icon.png" alt="A digital American Flag.">
<button class="start-button js-start-button">Quiz Me!</button>
</main>
<section class="feedback row centered" hidden></section>
<script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<script src="state-capitols.js"></script>
<script src="scripts.js"></script>
</body>
</html>