1.3 HTML Quick List

The following is an HTML Quick List:

Heading Element

<h1></h1>
<h2></h2>
<h3></h3>
<h4></h5>
<h6></h6>

Text Element :

<p></p> paragraph
<br> line break
<hr> horizontal rule

Physical Style

<b></b> bold
<i></i> italic

Unordered (bullet) List

<ul>
<li>First Item</li>
<li>Second Item</li>
</ul>

Ordered (Number) List

<ol>
<li>First Item</li>
<li>Second Item</li>
</ol>

Tables

<table border ="1">
<tr>
<th>some heading</th>
<th>some heading</th>
</tr>
<tr>
<td>sometext</td>
<td>sometext</td>
</tr>
</table>

Forms

<form action="" method="post">

<p>Name:</p>
<p><input type="text" name="name" value="Your name"></p>

<p>Comments: </p>
<p><textarea name="comments" rows="5" cols="20">Your comments</textarea></p>

<p>Gender:</p>
<p><input type="radio" name="gender" value="male"> Male</p>
<p><input type="radio" name="gender" value="female"> Female</p>

<p><input type="submit"></p>

</form>

Image Element

<img src ="" />

Links

<a href ="http://www.examples.com /"> This is a link </a>