0% found this document useful (0 votes)
2 views1 page

HTML Document Structure Guide

The document provides a basic structure for an HTML file, including the doctype declaration, head, and body sections. It also lists HTML tags for various elements such as paragraphs, bold text, italics, unordered and ordered lists, and horizontal lines. This serves as a reference for coding basic HTML elements.

Uploaded by

juliaselemani71
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

HTML Document Structure Guide

The document provides a basic structure for an HTML file, including the doctype declaration, head, and body sections. It also lists HTML tags for various elements such as paragraphs, bold text, italics, unordered and ordered lists, and horizontal lines. This serves as a reference for coding basic HTML elements.

Uploaded by

juliaselemani71
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Basic structure:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8"/>

<title> </title>

</head>

<body>

</body>

</html>

Characters to code:

1. Paragraph- <p> </p>

2. Bold- <strong> </strong>

3. Italics- <em> </em>

4. Lists- <ul> </ul> (bullet points) <li> </li>

5. Lists- <ol> </ol> (numbering) <li> </li>

6. Line- <hr/>

You might also like