HTML Tags - English Version
HTML Tags - English Version
1.
5. topmargin
It can be used to set the top margin in the
body.
<body>
Welcome to My Web Page !
5 <BR>
This tag ends a line and starts a new one with <br>
a little gap in between. I read in class XII.
</body>
This tag is used to break the text into <body>
6 <P>……</P> <p>
paragraphs. On the Insert tab, the galleries include
Page - 2 Satyajit Mukherjee
items that are designed to coordinate
with the overall look of your document.
</p>
</body>
<H1>…..</H1> <H1>Heading 1</H1>
<H2>…..</H2> <H2> Heading 2</H2>
<H3>…..</H3> <H3> Heading 3</H3>
7
<H4>…..</H4> These tags are used to show output headings. <H4> Heading 4</H4>
<H5>…..</H5> <H5> Heading 5</H5>
<H6>…..</H6> <H6> Heading 6</H6>
<body>
<address>
<ADDRESS>
F – 2/B, Shradha Apartment,
8
……….. These tags are used to write text in the Vidyasagar Pally, Jhargram, Pin –
……….. format of an address. 721507
</ADDRESS> </address>
</body>
1. align <body>
9 <HR>
2. width It is used to draw a horizontal line in a <hr align=left width=500 size=4
3. size document. color=red>
4. color </body>
<body>
<center>
10 <CENTER>…</CENTER>
It is used to bring an image or text to the Welcome to my home page
middle of the document. </center>
</body>
<body>
<font face="Arial" size=6
1. face This tag is used to change font style, size, color=red>
11 <FONT>…..</FONT> 2. size
3. color and color for text in a document. Welcome to my home page!!!
</font>
</body>
20
<LI>…….</LI> It is used to express text or sentences in order
and is used with <OL> and <UL> tags.
21 <DL>…..</DL> It is used to use Definition List Values. <dl>
<marquee hspace=50>
7. scrolldelay This attribute is used to decrease the speed of Welcome To My Web Page !!!
marquee text. </marquee>
<CAPTION>
28 ….
This tag is used to write the captions in a
</CAPTION> table.
29 <TH>…..</TH> This tag is used to write the table header.
30
<TR>…..</TR> This tag is for table row, every row in a table
must be designated with it.
31
<TD>…..</TD> Using this tag data can be added to the table
header fields.
32 <FRAME> 1. src
This tag is used to divide a browser window <title>Frame</title>
</head>
into multiple parts. <frameset rows=”50%,50%”>
<frame name=”top”
src=”abc.html”>
<frame name=”bottom”
src=”xyz.html”>
33 <FRAMESET>
This tag is used create a frame in the browser </frameset>
window. <body>
</body>
</html>
<body>
<form name=”f1”>
34 <FORM> ……. </FORM> 1. name The <form> tag is used to define a form.
</form>
</body>
The <input> element is used to create
different interactive controls to accept data
<INPUT> 1. type
from the user. Using <input> tag and its
‘type’ attribute different control such as
textbox, button, password box can be
created.
35
<form>
Text Box Type=”text”
The textbox is used to capture text (input) <input type=”text” name=”t1”
such as a name, email, phone number etc. value=100>
</form>
<form>
Password Input Type=”password”
The password input is used to capture <input type=”password”
passwords from the user. name=”t1”>
</form>