-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestPage.html
More file actions
96 lines (72 loc) · 3.86 KB
/
testPage.html
File metadata and controls
96 lines (72 loc) · 3.86 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>fsTest</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<!-- Font Link -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400|Teko:600" rel="stylesheet">
<!-- Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<!-- Fontawesome Icons -->
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<!-- Navbar -->
<div class="container-fluid" id="Nav">
<nav class="" >
<div class="col-6 col-md-4 d-inline logo">
<img src="img/bhmLogo.png" alt="Full-Stack Logo">
</div>
</nav>
</div>
<!-- Content -->
<div class="container-fluid px-0" id="testContent">
<div id="tQuestion" class="row py-3 mx-auto mx-sm-auto col-md-10 col-sm-10 push-1 push-sm-1 text-sm-center text-center">
<h4 id="testQuestion">1. placeholder for question Libero, molestias! Earum illum quas consectetur.</h4>
</div>
<div id="answerChoice" class="container">
<div id="ansBox" class="row">
<div class="col-2 col-sm-2 text-center btn-group-vertical">
<input type="radio" name="choice" id="radBtn" value="a"/>
</div>
<div class="col-10 col-sm-10 text-center" id="answers">
<p id=" optionA">Lorem ipsum dolor sit amet, consectetur djkkhgkadfh vlisjrnb wv; ieun.sbjh.la </p>
</div>
</div>
<div id="ansBox" class="row">
<div class="col-2 col-sm-2 text-center btn-group-vertical">
<input type="radio" name="choice" id="radBtn" value="b"/>
</div>
<div class="col-10 col-sm-10 text-center" id="answers">
<p id=" optionB">Lorem ipsum dolor sit amet, consectetur djkkhgkadfh vlisjrnb wv; ieun.sbjh.la </p>
</div>
</div>
<div id="ansBox" class="row">
<div class="col-2 col-sm-2 text-center btn-group-vertical">
<input type="radio" name="choice" id="radBtn" value="c"/>
</div>
<div class="col-10 col-sm-10 text-center" id="answers">
<p id=" optionC">Lorem ipsum dolor sit amet, consectetur Lorem ipsum dolor sit ieun.sbjh.la </p>
</div>
</div>
<div id="ansBox" class="row">
<div class="col-2 col-sm-2 text-center btn-group-vertical">
<input type="radio" name="choice" id="radBtn" value="d"/>
</div>
<div class="col-10 col-sm-10 text-center" id="answers">
<p id=" optionD">Lorem ipsum dolor sit amet, consectetur djkkhgkadfh vlisjrnb wv; ieun.sbjh.la </p>
</div>
</div>
<div class="text-center">
<button type="button" id="nextBTN" class="btn btn-success">Next</button>
</div>
</div>
</div>
</body>
</html>