0% found this document useful (0 votes)
5 views2 pages

File 3

HTML, or Hypertext Markup Language, is the foundational markup language for structuring web pages. It consists of elements made up of opening and closing tags, with some elements being empty, like <img> for images. Various formatting elements are available in HTML to display text in different styles, such as bold, italic, and subscript.

Uploaded by

selvamohana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

File 3

HTML, or Hypertext Markup Language, is the foundational markup language for structuring web pages. It consists of elements made up of opening and closing tags, with some elements being empty, like <img> for images. Various formatting elements are available in HTML to display text in different styles, such as bold, italic, and subscript.

Uploaded by

selvamohana
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML- INTRODUCTION

HTML, or Hypertext Markup Language, is a markup language for the web that
defines the structure of web pages.

It is one of the most basic building blocks of every website.

What is HTML?

Hypertext: text (often with embeds such as images, too) that is organized in order
to connect related items
Markup: a style guide for typesetting anything to be printed in hardcopy or soft
copy format
Language: a language that a computer system understands and uses to interpret
commands.
HTML Elements
An element consists of the opening tag, a character, the content, and a closing tag.
Some elements are empty – that is, they don't have a closing tag but instead have a
source or link to content that you want to embed on the web page.

An example of an empty element is <img>, which you use to embed images on a


web page.
HTML elements are often used interchangeably with tags, but there's a small
difference between the two. An element is a combination of the opening and
closing tag, and then the content between them.

Formatting elements were designed to display special types of text:

 <b> - Bold text


 <strong> - Important text
 <i> - Italic text
 <mark> - Marked text
 <del> - Deleted text
 <ins> - Inserted text
 <sub> - Subscript text
 <sup> - Superscript text

You might also like