Skip to main content

demo

 Full Working Example – Copy Button for <pre> Code Block



HTML stands for HyperText Markup Language. It's the standard language used to create and design pages on the web.

Think of HTML as the skeleton of a webpage. It tells the browser:

  • What content to display (like text, images, links)

  • How the content is structured (headings, paragraphs, lists, etc.)

  • How different parts of the page are related (like what’s inside a section or article)

Here’s a tiny example of HTML:



<!DOCTYPE html>
<html>
<head>
    <title>Simple HTML Example</title>
</head>
<body>

    <div>
        <h1>Welcome to My Website</h1>
        <p>This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.This is a simple paragraph inside a div.</p>
    </div>

</body>
</html>