-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (29 loc) · 1.33 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
<!DOCTYPE html>
<html>
<!--Content in the <head> element is about *HOW* to render the page - it is not visible.-->
<head>
<!--Import Bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<img src="logo.png" alt="family feud logo" class="img-logo">
</div>
<h1 id="quizTitle">What are things that come in pairs?</h1>
<!-- INPUT + BUTTONS Row -->
<div class="row justify-content-center">
<input type="text" id="userInput" placeholder="Enter your guess" autocomplete="off">
<button id = "enter" type="button" class="btn btn-primary">Enter</button>
<button type="button" id = "reset" class="btn btn-danger">Reset</button>
</div>
<!-- This is an empty div where the answers will go -->
<div id = "answers">
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="script.js"></script>
</body>
</html>