-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
55 lines (51 loc) · 1.77 KB
/
index.htm
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="Access-Control-Allow-Origin" accept="no-cros" />
<link rel="stylesheet" href="libs/bootstrap.min.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="./libs/sweetalert2.min.css" />
<script src="./libs/sweetalert2.min.js"></script>
<title>Quiz App with Js</title>
</head>
<body
class="d-flex justify-content-center align-items-center bg-light container-fluid p-2"
>
<div
id="body-form"
class="card shadow col-12 col-lg-8 col-md-10 rounded-3"
>
<div
class="card-header text-center text-bg-primary border-bottom-0 rounded-2 d-flex flex-wrap align-items-center"
>
<h1 class="card-title col-12"></h1>
<h2 class="card-subtitle fs-5 col-12"></h2>
</div>
<div
class="card-body d-flex align-items-center flex-wrap justify-content-center rounded-bottom"
>
<p class="text p-5 rounded text-bg-warning d-none">
press here to start your exam <br />or<br />
press <code>space</code> key
</p>
<form
class="form text-center needs-validation exam w-100"
novalidate
>
<div class="col-12 col-lg-10 middle-x text-start" id="content"></div>
<div
class="col-12 col-lg-7 middle-x position-absolute bottom-0 mb-3"
id="send"
>
<button type="submit" class="btn btn-outline-success w-75 mt-2">
send
</button>
</div>
</form>
</div>
</div>
<script src="libs/bootstrap.min.js"></script>
<script type="module" src="js/Q&A.js"></script>
</body>
</html>