<html>
<head>
<title> This is the title </title>
</head>
<body>
<strong> Im in the body </strong>
<hr/>
<p><em> This is paragraph </em></p>
<!-- this is comment -->
This will be a <a href="second.html">link</a>
<br><a href="mailto:zooljaboy@yahoo.com" title = "this is tip">Email Zoloo</a><br>
<img src="http://www.w3schools.com/images/w3schools_green.jpg" alt="W3Schools.com" width="160" height="128">
<br>
<!-- TABLE -->
<table border="1">
<tr>
<th>A team</th>
<th>B team</th>
<th>C team</th>
</tr>
<tr>
<td>Atlanta</td>
<td>Boston</td>
<td>Chicago</td>
</tr>
<tr>
<td>New York</td>
<td>Miami</td>
<td>Indiana</td>
</tr>
<tr>
<td>Washington</td>
<td>Portland</td>
<td>New Orlean</td>
</tr>
</table>
<br>
<table border="1" cellspacing="10">
<tr>
<th colspan="2"><h3>NBA all star</h3></th>
</tr>
<tr>
<th>East</th>
<th>West</th>
</tr>
<tr>
<td>Miami</td>
<td>Indiana</td>
</tr>
<tr>
<td>Portland</td>
<td>New Orlean</td>
</tr>
</table>
<!-- LIST -->
<br>
<ul>
<li>Point Guard</li>
<li>Shooting Guard</li>
<li>Small Forward</li>
<li>Power Forward</li>
<li>Center</li>
</ul>
<ol>
<li>Point Guard</li>
<li>Shooting Guard</li>
<li>Small Forward</li>
<li>Power Forward</li>
<li>Center</li>
</ol>
</body>
</html>
No comments:
Post a Comment