Html Intro


Html Intro: Html stands for “Hypertext Markup Language” . Markup language is set of tags. Each html tags describes a different document in the page.


HTML Introduction

Lets understand the html base structure with the following example

Example

<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>

<h1>Heading</h1>
<p>Paragraph.</p>

</body>
</html>

Try it »


Advertisements

Add Comment

📖 Read More