HTML NOTES
ANKIT YADAV
INTRODUCTION TO HTML
{HYPER TEXT MARKUP LANGUAGE}
✨
WHAT IS HTML?
✨
HTML stands for hyper text markup langauge
HTML is the standard markup language for creating
✨
web pages
✨
HTML describes the structure of a web page.
✨
HTML consists a series of elements.
HTML elements tells the browser how to display the
✨
content.
Extension of html file is .html
HOW DOES IT WORK ?
HTML consists of a series of short codes typed into a text
- file calles as tags .
The text is then saved as html file, and viewed through a
browser like internet explorer
The browser reads the file and translates the text into
visible form
Some of the most popular HTML editiors, such as
FrontPage or Dreamweaver will let you create pages more
or less as you write document in Word or whatever text
editor you are using.
Ankit yadav notes
, HTML NOTES
ANKIT YADAV
ESSENTIAL HTML TAGS
There are four sets of HTML tags that form the basic
✨
structure needed for every HTML file :
✨
<html></html>
✨
<head></head>
✨
<title></title>
<body></body>
<html></html>
This basically defines the document as web page. It also
identifies the begining and end of the HTML document. All
other tags must fall between html tags.
<head></head>
The header contains information about the document that
will not appear on the actual page, such as the title of the
document, the author etc.
<title></title>
The title tag defines the title that will appear in the title bar
on your web browser. The title must appear between the
head tags.
Ankit yadav notes
ANKIT YADAV
INTRODUCTION TO HTML
{HYPER TEXT MARKUP LANGUAGE}
✨
WHAT IS HTML?
✨
HTML stands for hyper text markup langauge
HTML is the standard markup language for creating
✨
web pages
✨
HTML describes the structure of a web page.
✨
HTML consists a series of elements.
HTML elements tells the browser how to display the
✨
content.
Extension of html file is .html
HOW DOES IT WORK ?
HTML consists of a series of short codes typed into a text
- file calles as tags .
The text is then saved as html file, and viewed through a
browser like internet explorer
The browser reads the file and translates the text into
visible form
Some of the most popular HTML editiors, such as
FrontPage or Dreamweaver will let you create pages more
or less as you write document in Word or whatever text
editor you are using.
Ankit yadav notes
, HTML NOTES
ANKIT YADAV
ESSENTIAL HTML TAGS
There are four sets of HTML tags that form the basic
✨
structure needed for every HTML file :
✨
<html></html>
✨
<head></head>
✨
<title></title>
<body></body>
<html></html>
This basically defines the document as web page. It also
identifies the begining and end of the HTML document. All
other tags must fall between html tags.
<head></head>
The header contains information about the document that
will not appear on the actual page, such as the title of the
document, the author etc.
<title></title>
The title tag defines the title that will appear in the title bar
on your web browser. The title must appear between the
head tags.
Ankit yadav notes