DOCTYPE
DOCTYPE
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>
<br><br>
<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>
select month:
<input type="month" id="start" >
<br>
</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>
</div>
<img src="/images/0.png"><br>
<br>
<br>
<!--colors-->
<p style="color: greenyellow;"> style me</p>
</body>
</html>