Important points-
1.
In HTML
the first tag is always the HTML tag <HTML>
2.
Header of
the page is <HEAD> and <TITLE>
3.
The title appears in the title bar.
4.
Each HTML instruction consists of a beginning
tag and an ending tag.
Type the following HTML instruction in the Notepad(Word
processing program) Program.
</HTML>
<HEAD>
<TITLE>MY FIRST WEBPAGE </TITLE>
</HEAD>
</HTML>
Save file- Type filename:webpage.html(.html is file
extension)
Click on website.html file and open your first webpage in
your default browser like (google chrome,opera,Mozilla firefox)
Basic heading style in HTML(H1,H2,H3,H4,H5,H6)
1.
Heading can be displayed in font styles, sizes,
and colors.
2.
Heading are part of the body of a Webpage. Use
<body> tag in webpage.
</HTML>
<HEAD>
<TITLE>MY FIRST WEBPAGE</TITLE>
</HEAD>
<BODY>
<H1>HEADING STYLE 1</H1>
<H2> HEADING STYLE 2</H2>
<H3>HEADING STYLE 3</H3>
<H4>HEADING STYLE 4</H4>
<H5>HEADING STYLE 5</H5>
<H6>HEADING STYLE 6</H6>
</BODY>
</HTML>
Save file- Type filename: Heading tag webpage.html(.html is
file extension)
Click on website.html file and open your first webpage in
your default browser like (google chrome,opera,Mozilla firefox)
Output:
No comments:
Post a Comment