Mar 19, 2025
.html
extension.index.html
. This will be the homepage.<!DOCTYPE html>
<html>
<head>
<body>
<title>
tag.<meta>
tags.<p>
): Defines a paragraph.<h1>
- <h6>
): Define headings of various importance.<br>
): Creates a line break.<hr>
): Adds a horizontal line to separate content.<b>
or <strong>
) and Italic (<i>
or <em>
) tags for text styling.<ul>
) and ordered (<ol>
) lists for grouping items.<!--
and end with -->
.<a>
): Creates links to other webpages or URLs.
href
attribute to define the link destination.target="_blank"
.<img>
): Used to embed images.
src
attribute for the image path and alt
for alternate text.<table>
): Displays tabular data.<tr>
): Creates rows within the table.<th>
): Defines header cells.<td>
): Displays standard cells.colspan
to make a cell span across multiple columns.<form>
): Wraps around input elements for user data submission.<iframe>
.