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

HTML Introduction

« Previous Next Chapter »

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 browser (like Internet Explorer or Firefox) 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>

Example Explained


« Previous Next Chapter »

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