-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_connect_test.html
62 lines (53 loc) · 2.02 KB
/
api_connect_test.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
<!DOCTYPE html>
<html>
<head>
<title>routing</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body>
<div id="wrapper">
<!-- Header -->
<header id="header">
<div class="inner">
<!-- Logo -->
<a href="index.html" class="logo">
<span class="symbol"><img src="images/logo2.svg" alt=""></span><span class="title">ProgramBase </span>
</a>
</div>
</header>
</div>
<div id="wrapper2">
<div id="main">
<div class="inner">
<header>
<h1 id="question_title"></h1>
<h3>Lesson</h3>
<p id="question_lesson"></p>
<h3>Question</h3>
<p id="question_desc"></p>
<!-- Hidden results -->
<h1 id="resultCorrect" class="resultCorrect"></h1>
<h1 id="resultWrong" class="resultWrong"></h1>
<h3 id="resultCorrectSub" class="resultCorrect"></h3>
<button id="question_a" class="button small fit" onclick="changeAnswer('a')"></button>
<p></p>
<button id="question_b" class="button small fit" onclick="changeAnswer('b')"></button>
<p></p>
<button id="question_c" class="button small fit" onclick="changeAnswer('c')"></button>
<p></p>
<button id="question_d" class="button small fit" onclick="changeAnswer('d')"></button>
<p></p>
<button id="submitButton" class="submitButton button primary fit">Submit Answer</button>
<h1></h1>
<button id="nextButton" class="nextButton button">Next Question</button>
</header>
</div>
</div>
</div>
<!-- Link to the JavaScript file here: -->
<script src="assets/js/routing.js"></script>
</body>
</html>