Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilbghodke committed Feb 14, 2019
0 parents commit 809c367
Show file tree
Hide file tree
Showing 21 changed files with 1,840 additions and 0 deletions.
123 changes: 123 additions & 0 deletions abc.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@

<!doctype html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>TRF Level 2 Test</title>
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen">
<link href="css/layout.css" rel="stylesheet" type="text/css" media="screen">
<link href="css/nav.css" rel="stylesheet" type="text/css" media="screen">
<link href="css/quiz.css" rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<div id="container">

<div id="header">
<img src="signinimg.jpg" width="900" height="200" alt="HTML NOW"> </div>
<!-- header END -->

<div id="nav">

</div> <!-- nav END -->


<div id="content">
<h1>Level 2 Test</h1>
<div id="content-left">
<h2>Ready for the Test?</h2>
<form id="form6" method="post" action="">
<fieldset>
<legend>Multiple Choice</legend>
<div>
1. The two most important attributes of a form.<code></code>
<br>
<input type="radio" name="q_0" id="question0_0" value="0">
Id and action<br>
<input type="radio" name="q_0" id="question0_1" value="1"> <label>Class and method</label>
<br>
<input type="radio" name="q_0" id="question0_2" value="2"> <label>Action and method</label>
</div>
<div>
2. Defines the caption to the fieldset tag.<br>
<input type="radio" name="q_1" id="question1_0" value="0">
<code>&lt;legend&gt;</code><br>
<input type="radio" name="q_1" id="question1_1" value="1"> <label><code>&lt;h1&gt;</code></label>

<br>
<input type="radio" name="q_1" id="question1_2" value="2"> <label><code>&lt;caption&gt;</code></label>
</div>
<div>
3. A label's for attribute should match the input's ______.<br>
<input type="radio" name="q_2" id="question2_0" value="0">
Type<br>
<input type="radio" name="q_2" id="question2_1" value="1"> <label>Id</label>
<br>
<input type="radio" name="q_2" id="question2_2" value="2"> <label>Name</label>
</div>
<div>
4. The action attribute tells the form?<br>
<input type="radio" name="q_3" id="question3_0" value="0">
How to send the form’s data<br>
<input type="radio" name="q_3" id="question3_1" value="1">
Where to send the form’s data<br>
<input type="radio" name="q_3" id="question3_2" value="2">
When to send the form’s data</div>
<div>
5. Creates blank text field, but shows the text as dots.<code></code>
<br>
<input type="radio" name="q_4" id="question4_0" value="0">
Type="text"<br>
<input type="radio" name="q_4" id="question4_1" value="1">
Type="hidden"<br>
<input type="radio" name="q_4" id="question4_2" value="2">
Type="password"</div>
</fieldset>

<fieldset>
<legend>True/False</legend>
<div>
6. Method attribute will always post data into the browser.<br>
<input type="radio" name="q_5" id="question5_0" value="0"> <label>True</label>
<input type="radio" name="q_5" id="question5_1" value="1"> <label>False</label>
</div>
<div>
7. Checkbox buttons let users select one or more of a particular set of choices.<br>
<input type="radio" name="q_6" id="question6_0" value="0"> <label>True</label>
<input type="radio" name="q_6" id="question6_1" value="1"> <label>False</label>
</div>
<div>
8. <code>&lt;input type="submit" name="submit" id="submit" /&gt;</code> creates a reset button.<br>
<input type="radio" name="q_7" id="question7_0" value="0"> <label>True</label>
<input type="radio" name="q_7" id="question7_1" value="1"> <label>False</label>
</div>
<div>
9. By default there is a no border on a fieldset.<br>
<input type="radio" name="q_8" id="question8_0" value="0"> <label>True</label>
<input type="radio" name="q_8" id="question8_1" value="1"> <label>False</label>
</div>
<div>
10. The viewer never sees the transfer of data when the form uses <code>&lt;form method="get"&gt;</code>.<br>
<input type="radio" name="q_9" id="question9_0" value="0"> <label>True</label>
<input type="radio" name="q_9" id="question9_1" value="1"> <label>False</label>
</div>
</fieldset>
<input type="submit" value="Submit Quiz">
</form>
</div> <!-- content-left END -->

<div id="content-right">
</div> <!-- content-right END -->

<div class="clear"></div>

</div> <!-- content END -->

<div class="clear"></div>

<div id="ftr">
<p>© 2010 Travis McMaster. All rights reserved.</p>
</div>


</div> <!-- container END -->

</body>
Loading

0 comments on commit 809c367

Please sign in to comment.