forked from ReejoJoseph1244/RMLearning-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestyourself.html
More file actions
115 lines (98 loc) · 5.93 KB
/
testyourself.html
File metadata and controls
115 lines (98 loc) · 5.93 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html>
<head>
<title>RM Test Yourself</title>
<link rel="stylesheet" href="frontcss.css" type="text/css">
<style>
h1{
text-align: center;
}
.submit{
background-color:blueviolet;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 20px;
margin-left: 500px;
}
</style>
</head>
<body>
<div id="header" class="div"> <!--head-->
<table>
<tr>
<td><h1 style="margin-top: -4px;"><b> RM <sup> Learning system</sup><b> :<em>#1 Website for Learning</em></h1></td>
<td>
<div class="socialicons">
<img src="fb_icon.png">
<img src="insta_icon.png">
<img src="twitter_icon.png">
</div>
</td>
<td><button class="login" onclick="document.location='login_page.html'">Login</button></td>
</tr>
</table> <!--head closes-->
</div>
<div id="bar"> <!--head bar-->
<div class="div" style="float: left;">
<img src="logo.jpg" height="62px">
</div>
<div style="margin-left: 695px;">
<table>
<td><button class="Button" onclick="document.location='home.html'">Home</button> </td> <td> <button class="Button" onclick="document.location='videos.html'">Videos</button> </td> <td><button class="Button" onclick="document.location='videos.html'">Tutors</button> </td> <td><button class="Button" onclick="document.location='videos.html'">Test Yourself</button> </td> <td><button class="Button" onclick="document.location='contact.html'">Contact</button> </td>
</table>
</div>
</div> <!--head bar closes-->
<h1 style="color: cornflowerblue;">Test Yourself(A small sample test)</h1>
<form >
<ol>
<li>
<h2>Correct HTML Tag for the largest heading is</h2>
<input type="radio" name="rad"> < heading > <input type="radio" name="rad"> < h1 > <input type="radio" name="rad"> < head > <input type="radio" name="rad"> < h6 >
</li>
<li>
<h2>Which tag is used to create a check box in HTML?</h2>
<input type="radio" name="rad"> < checkbox > <input type="radio" name="rad"> < input type="checkbox" > <input type="radio" name="rad"> < type="checkbox" > <input type="radio" name="rad"> < cb >
</li>
<li>
<h2>In how many ways can we link CSS file to HTML?</h2>
<input type="radio" name="rad">1 <input type="radio" name="rad">2 <input type="radio" name="rad">3 <input type="radio" name="rad">4
</li>
<li><h2>What is the Extension of Javascript?</h2>
<input type="radio" name="rad">.Javascript <input type="radio" name="rad">.Java <input type="radio" name="rad">.js <input type="radio" name="rad">.script
</li>
<li><h2>Which of the following is used to read an HTML page and render it?</h2>
<input type="radio" name="rad">Web Server <input type="radio" name="rad">Web network <input type="radio" name="rad">Web Browser <input type="radio" name="rad">Web Matrix
</li>
<li><h2>In which part of the HTML metadata is contained?</h2>
<input type="radio" name="rad">head tag <input type="radio" name="rad">title tag <input type="radio" name="rad">html tag <input type="radio" name="rad">body tag
</li>
<li><h2>Which of the following is not the element associated with the HTML table layout?</h2>
<input type="radio" name="rad">alignment <input type="radio" name="rad">color <input type="radio" name="rad">size <input type="radio" name="rad">spanning
</li>
<li><h2>Which element is used for or styling HTML5 layout?</h2>
<input type="radio" name="rad"> CSS <input type="radio" name="rad">jQuery <input type="radio" name="rad">JavaScript <input type="radio" name="rad">PHP
</li>
</li>
<li><h2>Which CSS selecter is used to select elements with a specific class?</h2>
<input type="radio" name="rad">. <input type="radio" name="rad"># <input type="radio" name="rad">* <input type="radio" name="rad">class
</li>
<li><h2>Which of the following keywords is used to define a variable in javascript?</h2>
<input type="radio" name="rad">var <input type="radio" name="rad">let <input type="radio" name="rad">Both var and let <input type="radio" name="rad">None
</li>
<li><h2>How many sizes of headers are available in HTML by default?</h2>
<input type="radio" name="rad">5 <input type="radio" name="rad">6 <input type="radio" name="rad">3 <input type="radio" name="rad">4
</li>
<li><h2>The correct sequence of HTML tags for starting a webpage is -</h2>
<input type="radio" name="rad">.Head, Title, HTML, body5 <input type="radio" name="rad">HTML, Head, Title, Body<input type="radio" name="rad">HTML, Body, Title, Head <input type="radio" name="rad">HTML, Head, Title, Body
</li>
</ol>
<button class="submit" onclick="document.location='frontpage.html'">Submit</button>
</form>
</body>
</html>