-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproj2.html
More file actions
33 lines (33 loc) · 984 Bytes
/
proj2.html
File metadata and controls
33 lines (33 loc) · 984 Bytes
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>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>The CBD Quiz</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
type="text/css"
media="screen"
href="./CSS/proj2.css"
/>
</head>
<body>
<div class="mainDiv">
<div class="header">
<h1>THE CBD QUIZ</h1>
</div>
<form id="quiz" class="quiz">
<p class="inputText">First Name</p>
<input type="text" id="fName" value="" /><br />
<p class="inputText">Last name</p>
<input type="text" id="lName" value="" /><br />
</form>
<button id="submit">Get Results</button>
<div id="unAns" class="unAns"></div>
<div id="results" class="results"></div>
<a class="btn btn-primary" href="about.html" role="button">Go Back</a>
</div>
<script src="proj2.js"></script>
</body>
</html>