-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexMaster.html
130 lines (110 loc) · 3.03 KB
/
indexMaster.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quiz Hoster</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
/* Set height of the grid so .sidenav can be 100% (adjust if needed) */
.row.content {height: 1500px}
/* Set gray background color and 100% height */
.sidenav {
background-color: #f1f1f1;
height: 100%;
}
/* Set black background color, white text and some padding */
footer {
color: white;
padding: 5px;
}
/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
.sidenav {
height: 1000px;
padding: 15px;
}
.row.content {height: 100%;}
}
.container {
position: relative;
width: 100%;
overflow: hidden;
padding-top: 125%; /* 8:5 Aspect Ratio */
}
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
border: none;
}
.sidebar {
margin: 0;
padding: 0;
width: 200px;
background-color: #f1f1f1;
position: fixed;
height: 100%;
overflow: auto;
}
.sidebar a {
display: block;
color: black;
padding: 16px;
text-decoration: none;
}
.sidebar a.active {
background-color: #4CAF50;
color: white;
}
.sidebar a:hover:not(.active) {
background-color: #555;
color: white;
}
div.content {
margin-left: 200px;
padding: 1px 16px;
height: 1000px;
}
@media screen and (max-width: 700px) {
.sidebar {
width: 100%;
height: auto;
position: relative;
}
.sidebar a {float: left;}
div.content {margin-left: 0;}
}
@media screen and (max-width: 400px) {
.sidebar a {
text-align: center;
float: none;
}
</style>
</head>
<body>
<div class="sidebar">
<h2>  Quiz Hoster   </h2>
<ul class="nav nav-pills nav-stacked">
<li class="active"><a href="section1.html" style="background-color:#21b4c4"> A Question of Trust </a></li>
</ul>
</div>
<div class="content" id="section1">
<h4><small> TIP: Enter your details, click "Next". Then attend the quiz (25 Questions), click "Submit". </small></h4>
<hr>
<h2>A Question of Trust</h2>
<h5><span class="glyphicon glyphicon-time"></span> by G Kanchana, May 22, 2020.</h5>
<h5><span class="label label-danger">Class 10</span> <span class="label label-primary">Literature</span></h5><br>
<div class="container">
<iframe class="responsive-iframe" src="https://docs.google.com/forms/d/e/1FAIpQLSf3PeSC-HNw1BeFMgv_8Dcr1esYWCf51UUdpAA1K8wKlvYsFQ/viewform?usp=sf_link" width="100%" height="100%" frameborder="" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</div>
<br/>
</body>
</html>