HTML
HTML
HYPERTEXT MARKUP
LANGUAGE
OUTLINES:-
INTRODUCTION
TAGS
FORMAT
MULTIPLE TAGS
MARQUEE
HYPER LINK
FRAMES
TABLE
& SOMETHING EXTRA
WHAT IS HTML
It is a “markup language”.
It is a set of instruction to web browser to cause
the text to be displayed in a certain way.
TAGS
It is the basic feature in HTML document is
the “TAG”.
Tags are set off by angle brackets “< & >”
Opening tag and closing tag. For example
<b>make this bold</b>
<b><i>bold and italicize</i></b> correct
<b><i>bold and italicize</b></i>
incorrect
format
<html> The title is displayed
<head> at the very top of the
<title>my name is browser window.
nidhi </title> The body section
</head> contains all the tags
and text that are
<body>…………… displayed in the main
</body> window.
</html>
To change back ground colour
<body bgcolor=“red”>
To change font colour,size & style
In body
<font color=“green” face=“Arial”
size=“+24”>
</font>
Set a picture in the page:-
<img src=“total path of pic”>
To control the size of image
<marquee>happy holi</marquee>
To change the background ,font
colour,size etc:-
<marquee bgcolor=“cyan”><font
color=“black” size=“+20”
face=“Arial”></font></marquee>
HYPERTEXT LINKS
It makes the
web ,the web
There are two Here is a picture of
kinds of link- my best friend!
Within pages
Email links
Link within pages
<html>
<head>
<frameset cols=50,50>
XX YY
TABLE
name pic
ranu
Changes in table
Border And Border colour:
<table border=“10” color=“red”>
List
Unordered list - • Nidhi
<ul> • Ranu
<li>nidhi</li> • kavita
<li>ranu</li>
<li>kavita</li>
</ul>
LIST
Ordered list – 1. Nidhi
<ol> 2. Ranu
<li>nidhi</li> 3. kavita
<li>ranu</li>
<li>kavita</li>
</ol>
Something extra
For space  
For breaks in line <br>
Heading <h1>…..<h2>
Paragraph <p></p>
Underline <u></u>
Bold <b></b>
Italic <i></i>