Aug 22, 2024
index.html
, confirm the file extension change.index.html
to view in your default web browser (Microsoft Edge or Google Chrome).<h1>Header</h1>
(Opening and closing tags).<h1>
(largest) to <h6>
(smallest).<p>Paragraph text</p>
.<em>Emphasized text</em>
(italic) vs <i>Italicized text</i>
.<strong>
vs <b>
.<u>
.<section>
to group related content.<ul>
for bullet lists, with <li>
for list items.<ol>
for numbered lists, also with <li>
for list items.<br>
(self-closing tag).<!-- Comment text -->
, will not be displayed in the browser.recipe.html
following the same method as index.html
.<a href="recipe.html">Learn how to make our chocolate chip cookies</a>
to link between pages.<img>
tag:
<img src="KCC Logo.png" width="400" height="122" alt="Kevin Cookie Company logo">
.alt
description for accessibility.<audio>
and <video>
tags.Order Form.html
: Set up a table for cookies with <table>
, <tr>
, <th>
, and <td>
.<form>
, <input>
, and specify types (e.g., type="date" for date pickers).<!DOCTYPE html>
at the beginning.<html>
, <head>
, and <body>
tags.