-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuiz.html
executable file
·71 lines (37 loc) · 1.2 KB
/
Quiz.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
<!DOCTYPE HTML>
<html>
<link rel="stylesheet" type="text/css" href="files/css/Quiz.css">
<head>
<title>Quiz</title>
</head>
<body>
<h1 id = "header">Good Luck On My Quiz</h1>
<p id = "main"> Type in your name below and click "Begin Quiz" to start the quiz</p>
<div id = "radio1">
<!--<input type="radio" id="question1"> test button1 </input>
<input type="radio" id="question2"> test button2 </input>
<input type="radio" id="question3"> test button3 </input>
<input type="radio" id="question4"> test button4 </input> -->
</div>
<div id = "submit">
<button id = "mainButton1">Begin Quiz</button>
</div>
<br></br>
<div id = "name">
<form>
<input type = "text" id = "theName">
</form>
</div>
<div id = "flickr-images">
<img src = "" id = "image">
</div>
<br></br>
<div id = "canvas">
<canvas id="myCanvas" width="400" height="300" ></canvas>
</div>
<p id = "last"> </p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- <script type="text/javascript" src="files/quiz.js"></script> -->
<script type="text/javascript" src="files/js/Quiz_logic.js"></script>
</body>
<html>