Html Language / Introduction

1. Html stands for Hyper Text Markup Language and is used to create a webpages.
2. It consists of predefined tags.i.e every Data is presented / Displayed using a tag.
3. It elements/tags are the building blocks of HTML pages.
4. It tags are of two types(Singleton and Paired tags) used to display data.
5. Singleton tag itself consists of closing only. Example <br/>
6. Paired tag itself consists ofboth opening and closing parts. Example <p>Paired tag</p>

structure of html program




Explanation
<!DOCTYPE html> It declares document to be HTML.
<html> It is the root element of an HTML page.
<head> It contains meta information about the document.
<title> It is the title of the document.
<body> It contains the visible page content.
<h1> It is the large heading.
<p> It declares the paragraph.


Home     Back