-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (92 loc) · 3.82 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Question and Answers</title>
<script src="./js/jquery-3.6.0.js"></script>
<style>
body{
background-color: rgb(130, 128, 113);
}
li{
background-color: tomato;
width: 300px;
border-radius: 20px;
text-align: center;
}
input{
margin: 15px;
color: blue;
text-align: right;
padding: 10px;
}
.card{
background-color: azure;
border-radius: 10px;
width: 300px;
}
.card2{
background-color: azure;
border-radius: 10px;
width: 300px;
}
h1{
margin: 20px;
}
p{
margin: 30px;
}
</style>
</head>
<body>
<div class="container">
<header><h1 style="text-align: center; color: black;">HTML CSS AND JAVASCRIPT QUESTION AND ANSWER</h1></header>
<section>
<ol>
<li>
<h3>What is the Capital of NIgeria</h2>
</li>
<div class="card">
<input type="radio" name="Capital" class="q1" value="Abuja"> Abuja <br>
<input type="radio" name="Capital" class="q1" value="Lagos"> Lagos <br>
<input type="radio" name="Capital" class="q1" value="Ekiti"> Ekiti <br>
<p id="cor1"></p>
</div>
<li><h3>what is the Full meaning of html</h3></li>
<div class="card">
<label for="hyperman">
<input type="radio" name="meaning" id="hyperman" class="q2" value="HyperText Man Language"> HyperText Man Language <br>
</label>
<label for="hypermark">
<input type="radio" id="hypermark" name="meaning" class="q2" value="HyperText Mark-up Language"> HyperText Mark-up Language <br></label>
<input type="radio" name="meaning" class="q2" value="Hand Made Language"> Hand Made Language <br>
<p id="cor2"></p>
</div>
<li>
<h3>What is Debugging</h3>
</li>
<div class="card2">
<input type="radio" name="Debug" class="q3" value="Debugging is the process of finding and removing errors in a program"> Debugging is the process of finding <br> and removing errors in a program <br>
<input type="radio" name="Debug" class="q3" value="Debugging is the process of creating errors in a program"> Debugging is the process of creating errors in a program <br>
<input type="radio" name="Debug" class="q3" value="Debugging is the process of writing codes in a program"> Debugging is the process of writing codes in a program <br>
<p id="cor3"></p>
</div>
<li>
<h3>The following are types of loops except</h3>
</li>
<div class="card">
<input type="radio" name="loops" class="q4" value="For loops"> For loop <br>
<input type="radio" name="loops" class="q4" value="Off loops"> Off loop <br>
<input type="radio" name="loops" class="q4" value="Do While loop"> Do While loop <br>
<p id="cor4"></p>
</div>
</ol>
<h1 id="total"></h1>
<input type="button" value="Submit" id="final">
</section>
</div>
<script src="./js/ans.js"></script>
</body>
</html>