-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.43 KB
/
index.html
File metadata and controls
38 lines (37 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>App</title>
</head>
<body>
<br>
<br>
<a href="https://codealps.com" title="CodeAlps website">Visit CodeAlps.com for such awesome content</a>
<div class="container">
<form name="quiz" onsubmit="return ready()">
<h1 align="center">Simple Quiz Application</h1>
<h3 class="result" align="center">Your Score :<span class="fa">0</span></h3>
<h3>What is HTML ?</h3>
<input type="radio" name="q1" value="a" id="q1a">Scripting Language<br />
<input type="radio" name="q1" value="b" id="q1b">Programming Language<br />
<input type="radio" name="q1" value="c" id="q1c">Backend Language<br />
<input type="radio" name="q1" value="d" id="q1d">None<br />
<h3>CSS use for ?</h3>
<input type="radio" name="q2" value="a" id="q2a">Designing<br />
<input type="radio" name="q2" value="b" id="q2b">Backend<br />
<input type="radio" name="q2" value="c" id="q2c">Structuring<br />
<input type="radio" name="q2" value="d" id="q2d">None<br />
<h3>Javascript is a Good Skill .</h3>
<input type="radio" name="q3" value="a" id="q3a">True<br />
<input type="radio" name="q3" value="b" id="q3b">False<br />
<button type="submit">Submit</button>
</form>
</div>
<script src="main.js">
</script>
</body>
</html>