From http://www.w3schools.com (Copyright Refsnes Data)

Introduction to HTML

Previous Next

HTML Example

<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Try it yourself


What is HTML?

HTML is a language for describing web pages.


HTML Tags

HTML markup tags are usually called HTML tags


HTML Documents - Web Pages

The purpose of a web browsers (like Internet Explorer) is to read HTML documents and display them as web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page:

<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph</p>
</body>
</html>

Try it yourself

Example Explained


Previous Next

From http://www.w3schools.com (Copyright Refsnes Data)