0% found this document useful (0 votes)
20 views5 pages

DOCTYPE

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views5 pages

DOCTYPE

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

<!

DOCTYPE html>
<html>
<head>
<title> Good Form</title>
</head>
<body>
<h1>Html Form </h1>
<form>
<b>
<label> Enter user name:</label>
<input type="text" id="username" name="username">
<br><br>
<label> Enter email:</label>
<input type="email" id="email" name="email">
<br><br>
<label> Password:</label>
<input type="Password" id="Password" name="Password">
</b>
<p> Select your age:</p>
<input type="radio" name="age" value="0-25" id="option-1">
<label for="option-1">0-25</label>
<input type="radio" name="age" value="25-30" id="option-1">
<label for="option-2">65-30</label>
<input type="radio" name="age" value="30-45" id="option-1">
<label for="option-3">31-45</label>
<input type="radio" name="age" value="46+" id="option-1">
<label for="option-1">46+</label>

<br><br>

<label for="question"> Security question: </label>


<select name="question" id="question">
<option value="q1">what color are your favourite pair of
socks?</option>
<option value="q2">if you could be vegetable,what it be?</option>
<option value="q3"> what is your best ever security question?</option>
<option value="q4">a u okay with answering the qn?</option>
</select>

<br><br>

<label for="answer"> Security question answer: </label>


<input type="text" id="answer" name="answer">

<br><br>
<textarea name="bio" id="bio" cols="20" rows="6"></textarea>
</form>
</body>
</html>

<!DOCTYPE html>
<html>
<head>
<title> Making Form</title>

</head>
<body>
<form>
<label for="firstname">First name: </label>
<input type="text" name="firstname">
<br>
<label for="lastname">Last name: </label>
<input type="text" name="lastname" required>
<br>
<label for="email">email: </label>
<input type="email" name="email" required>
<br>
<b> Birthday:</b>
<input type="date" id="birthday">
<br>

<label for="meeting-time">Choose a time for your appointment:</label>


<input type="datetime-local" id="meeting-time" >
<br
<label for="password">password: </label>
<input type="password" name="password" required><br>

select month:
<input type="month" id="start" >

<br>

<label for="range">Select value: </label>


<input type="range" id="range" value="90">
<br>
<input type="submit" value="Login!">

</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>LEARNING HTML</title>

</head>
<body>
<h1> <font color="blue"<b>FIRST LEASSON</b></font></h1>
<p><i>Introduction</i></p>
<p><strong>Introduction</strong></p>
<p><small>Definition</small></p>
<div></div>
<font color="brown" size="3">

<ol>

<li>Joseph</li>
<li>Thierry</li>
<li>Eric</li>

</ol>

<ul>

<li>Joseph</li>
<li>Thierry</li>
<li>Eric</li>

</ul>
</font>
</div>

<div>
<dl>
<dt><b>HTML</b></dt>
<dd>HyperText Markup Language</dd>
<dt><b>CSS</b></dt>
<dd>Cascading Style Sheets</dd>
</dl>

</div>

<div>
<pre>
This Text will
be shown exactly
as it is written.
</pre>
</div>

<div>

<h2>Physics</h2>
<p>Physics is the natural science that studies matter, its fundamental constituents,
its motion and behavior through space and time, and the related entities of energy and
force. </p>
<hr>
<h2>Chemistry</h2>
<p>Chemistry is the branch of science that deals with the properties, composition, and
structure of elements and compounds, how they can change, and the energy that is
released or absorbed when they change.</p>
</div>

<div>
<table border="1" >
<tr>
<th>Name</th>
<th>Age</th>
<th>Country</th>
</tr>
<tr>
<td>Harry Depp</td>
<td>28</td>
<td>Britain</td>
</tr>
<tr>
<td>John Smith</td>
<td>35</td>
<td>USA</td>
</tr>
<tr>
<td>Ram Krishna</td>
<td>19</td>
<td>Nepal</td>
</tr>
</table>

</div>

<div>

<a href="https://www.facebook.com/murutampunzi.eric/"> my facebook account </a>

</div>
<img src="/images/0.png"><br>

<a href="www.thenetninja.co.uk"> net ninjas</a>

<br>

<a href="about.html"> About us</a>

<br>
<!--colors-->
<p style="color: greenyellow;"> style me</p>
</body>
</html>

You might also like