This is a list of the most used tags and attributes. You will be able to create a complete and semantic website with them.

Tags

Document Structure

<!DOCTYPE html>: This declaration defines the document to be HTML5.

<html>: This is the root element of an HTML page.

<head>: This contains meta-information about the HTML document.

<title>: This specifies the title of the HTML document.

<body>: This contains the main content of the HTML document.

Example:

<!DOCTYPE html>
<html>
    <head>
        <title>My Web Page</title>
    </head>
    <body>
        <!-- Page content goes here -->
    </body>
</html>

The rest of the content (23 read minutes) is restricted.

Please use your personal access token or register to access.

Create account or login