Class 7 Chapter 6 Introduction To HTML
Class 7 Chapter 6 Introduction To HTML
Tags: Commands in HTML are called Tags. HTML tags are the keywords on a web page
that define how your web browser must format and display your web page. There are
two types of tags:
Container Tags: They are the tags which have a start and an end or the opening tag
and the closing tag.
Empty Tags: They have an opening tag but they are not closed.
—---------------------------------------------------------------------------------
ATTRIBUTES
A attribute is a special keyword used inside a tag to specify additional information
about the tag and customize it. It is a piece of markup language used to adjust the
behavior or display of an HTML element.
—----------------------------------------------------------------------
Structure Of an HTML Document:
<html>
<head><title> Title of the webpage </title></head>
<body>
Tags that will customize the webpage and give them a better look.
</body>
</head>
</html>
HTML EDITORS
A HTML editor is required to create HTML documents. There are two types of HTML
editors:
WYSIWYG editor: It stands for What You See Is What You Get. It provides an in-built
interface where you can make html documents quicker without writing any html tags.
TEXT editor: These editors let us create HTML documents with the help of tags.