<table>
, <tr>
, <th>
, and <td>
<h1>Grocery List</h1>
<table>
<tr>
<th>Fruit</th>
<th>Grains</th>
<th>Dairy</th>
</tr>
<tr>
<td>Apples</td>
<td>White Rice</td>
<td>Milk</td>
</tr>
<tr>
<td>Bananas</td>
<td>Oatmeal</td>
<td>Yogurt</td>
</tr>
</table>
Fruit | Grains | Dairy |
---|---|---|
Apples | White Rice | Milk |
Bananas | Oatmeal | Yogurt |
<ul>
describes a unordered list
<ol>
describes an ordered list.
<ul>
<li>Pizza</li>
<li>Pasta</li>
<li>Bread</li>
</ul>
Comments in HTML are not read by browsers. They use the following syntax:
<!-- This is a comment! -->
<!-- I don't want this to be shown because it is silly
<body>
<div>
<p>I do not want this content to be shown</p>
<img src="/images/dog-pic.jpg" alt="this is a doggo" title="Doggo">
</div>
</body>
-->