Jun 12, 2024
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My First Web Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first web page.</p>
</body>
</html>
<h1>
per page, followed by <h2>
, <h3>
, etc.<em>
, <strong>
, <br>
, <abbr>
<ol>
), unordered lists (<ul>
), description lists (<dl>
)<li>
for ordered and unordered lists, <dt>
and <dd>
for description lists<a>
): Hyperlinks between web pageshref
, target ("_blank" for new tabs)
, rel
<img>
): Attributes include src
, alt
, title
, width
, height
loading='lazy'
for performance improvement<figure>
with <figcaption>
for grouped content<header>
, <main>
, <article>
, <section>
, <footer>
, <nav>
<div>
and <span>
unless necessary<table>
, <thead>
, <tbody>
, <tfoot>
, <tr>
, <th>
, <td>
scope
(for headers), colspan
, rowspan
<form>
, <input>
, <label>
, <fieldset>
, <legend>
, <textarea>
, <button>
name
, id
, type
, placeholder
, required
, method (GET/POST)
, autocomplete
index.html
), Store Hours (hours.html
), Contact Us (contact.html
)
.png
files), CSS (style.css
), minimal CSS for layout/styling