About This Page
This is a simple HTML file that demonstrates the basic structure of a webpage. It includes common elements like headings, paragraphs, lists, and links.
This page uses HTML5 semantic elements and includes a CSS style section for styling. Everything is contained in a single HTML file.
HTML Features Included
- HTML5 Doctype declaration
- Proper document structure with head and body
- Meta tags for character encoding and viewport
- Semantic elements like header, main, section, and footer
- Internal CSS styling
- Responsive design with media queries
Code Example
Here's how to create a simple link in HTML:
<a href="https://example.com">Visit Example.com</a>
And here's how to create a paragraph:
<p>This is a paragraph of text.</p>
Try It Yourself
You can copy this code and save it as an HTML file (e.g., index.html) then open it in any web browser.