About this page
This is a basic HTML5 sample page named `index.html`. It demonstrates a simple structure including a header, navigation, main content area, and a footer.
You can create this file yourself using a simple text editor like Notepad and saving the file with the **.html** extension.
Key HTML Elements Used:
- ``: Declares the document type and version.
- ``: The root element of the HTML page.
- ``: Contains metadata about the document, like the title and character set.
- ``: Specifies the character encoding.
- `
`: Sets the title of the page shown in the browser's title bar or tab. - ``: Contains all the visible content of the web page.
- `
`, `
`, `
`: Heading tags for different levels of importance.
- `
`: Defines a paragraph of text.
- ``: Defines a hyperlink.
- `
- `, `
- `: Unordered list and list items for navigation.
- `
`, `