Test Landing Page
This page serves as a demonstration of various HTML elements and their functionalities. It is designed to provide a clear understanding of how different components can be utilized in web development.
Below are examples of several HTML elements:
Headings
Example of Headings
This is a Heading 1
This is a Heading 2
This is a Heading 3
Paragraphs
Paragraphs are defined with the <p>
tag. They are used to separate blocks of text for better readability.
Example of a Paragraph
This is a paragraph of text.
Lists
HTML supports both ordered and unordered lists. Unordered lists are created with the <ul>
tag, while ordered lists use the <ol>
tag.
Example of an Unordered List
- Item 1
- Item 2
- Item 3
Example of an Ordered List
- First Item
- Second Item
- Third Item
Links
Example of a Link
Images