0% found this document useful (0 votes)
6 views

HTML Intro

HTML is a markup language used to define the structure and layout of web pages. It uses tags to mark elements like text, headings, lists, links and images so that they display correctly in a web browser. HTML pages have a basic structure that includes html, head and body tags. The head contains meta information, while the body holds the visible page content. Tim Berners-Lee created HTML in 1991 as a standard language for sharing information on the early internet.

Uploaded by

Nevin XII B Joe
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

HTML Intro

HTML is a markup language used to define the structure and layout of web pages. It uses tags to mark elements like text, headings, lists, links and images so that they display correctly in a web browser. HTML pages have a basic structure that includes html, head and body tags. The head contains meta information, while the body holds the visible page content. Tim Berners-Lee created HTML in 1991 as a standard language for sharing information on the early internet.

Uploaded by

Nevin XII B Joe
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

HTML

HTML stands for HyperText Markup Language. It is used to design web pages using a markup
language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link
between web pages. A markup language is used to define the text document within the tag which
defines the structure of web pages. HTML consists of a series of elements.HTML elements tell the
browser how to display the content. An HTML element is defined by a start tag, some content, and
an end tag.

HTML is a markup language used by the browser to manipulate text, images, and other content, in
order to display it in the required format. HTML was created by Tim Berners-Lee in 1991. The first-
ever version of HTML was HTML 1.0, but the first standard version was HTML 2.0, published in
1995.

Structure of an HTML

<html>
<head>
<title>Page Title</title>
</head>
<body>

</body>
</html>

 The <html> element is the root element of an HTML page

 The <head> element contains meta information about the HTML page

 The <title> element specifies a title for the HTML page which is shown in the browser's title

bar or in the page's tab

 The <body> element defines the document's body, and is a container for all the visible

contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

You might also like