$100 Website Offer

Get your personal website + domain for just $100.

Limited Time Offer!

Claim Your Website Now

HTML Cheatsheet


<!DOCTYPE html>  <!-- Document type declaration -->

<html> <!-- Root element -->

<head> <!-- Document head containing metadata -->
    <meta charset="UTF-8"> <!-- Character encoding -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Responsive viewport settings -->
    <title>Your Page Title</title> <!-- Page title displayed in the browser tab -->
    <link rel="stylesheet" href="styles.css"> <!-- Link to an external stylesheet -->
    <style>
        /* Internal CSS styles */
    </style>
    <script src="script.js"></script> <!-- Link to an external JavaScript file -->
</head>

<body> <!-- Document body where visible content goes -->
    <header> <!-- Header section -->
        <h1>Heading 1</h1> <!-- Heading with the largest font size -->
        <h2>Heading 2</h2> <!-- Subheading -->
        <nav> <!-- Navigation menu -->
            <ul>
                <li><a href="#">Home</a></li> <!-- List item with a link -->
                <li><a href="#">About</a></li>
                <li><a href="#">Services</a></li>
            </ul>
        </nav>
    </header>

    <main> <!-- Main content section -->
        <section> <!-- Section with a heading -->
            <h2>Section Title</h2>
            <p>This is a paragraph of text.</p>
            <a href="https://www.example.com">Visit Example</a> <!-- Link to an external website -->
            <img src="image.jpg" alt="Image Description"> <!-- Image with alternative text -->
        </section>

        <article> <!-- Independent, self-contained content -->
            <h3>Article Title</h3>
            <p>Article content goes here.</p>
        </article>
    </main>

    <aside> <!-- Sidebar or supplementary content -->
        <h3>Sidebar Title</h3>
        <ul>
            <li>Item 1</li>
            <li>Item 2</li>
        </ul>
    </aside>

    <footer> <!-- Footer section -->
        <p>&copy; 2023 Your Website Name</p> <!-- Copyright notice -->
    </footer>
</body>

</html>

Structure

  • <html> and </html> enclose the entire HTML document.
  • <head> and </head> contain information about the document, such as the title and meta tags.
  • <body> and </body> contain the content of the document, such as headings, paragraphs, and images.

Headings

  • <h1> to <h6> create headings of different sizes.
  • <p> creates a paragraph.

Lists

  • <ul> creates an unordered list.
  • <ol> creates an ordered list.
  • <li> creates a list item.

Images

  • <img> inserts an image into the document.

Links

  • <a> creates a link to another document or resource.

Tables

  • <table> and </table> enclose a table.
  • <tr> and </tr> create rows in a table.
  • <td> and </td> create cells in a table.

Forms

  • <form> and </form> enclose a form.
  • <input> creates a text input field.
  • <select> creates a drop-down list.
  • <button> creates a button.

Attributes

  • Attributes are used to specify additional information about elements. For example, the src attribute of the <img> element specifies the source of the image.
<!DOCTYPE html>
<html>
<head>
  <title>My Web Page</title>
</head>
<body>
  <h1>This is my web page!</h1>
  <p>This is a paragraph on my web page.</p>
  <img src="https://example.com/image.png" alt="Image of a cat">
  <ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
  </ul>
</body>
</html>

Related Posts

CMS Website Development Checklist: A Step-by-Step Guide for Business Owners

Introduction Your website is the digital headquarters of your business. It operates as your 24/7 sales representative, your primary marketing asset, and the first point of contact…

Read More

How to Choose the Right CMS for Your Business Website

Introduction A website serves as the digital engine of a modern business, but the software powering it determines how fast, secure, and adaptable that engine truly is….

Read More

Common CMS Website Mistakes and How to Avoid Them

Introduction A Content Management System (CMS) offers an accessible way to build, manage, and update a website without needing to write code from scratch. Because platforms like…

Read More

The Amaravati Discovery Guide: Sightseeing and Local Events

Introduction Amaravati is a destination where thousands of years of history, profound spiritual heritage, and evolving modern regional dynamics intersect. Situated along the southern banks of the…

Read More

Navigating DataOps Courses, Certifications, and Professional Services

Introduction Modern organizations rely on fast, accurate, and accessible data to drive operations, customer experiences, and strategic decisions. Yet, as data volumes grow and data architectures expand…

Read More

Integrating AI Software Development with Cloud and DevOps Pipelines

Introduction Modern software engineering has moved far beyond traditional application coding and routine deployments. Organizations across industries are racing to build intelligent, cloud-native platforms capable of processing…

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x