Attributes of <body> Tag:
- bgcolor = .......................... => Back Ground Color.
- text = ................................. => Text Color.
- background = ................. => Back Ground Image.
- leftmargin = ......................
- topmargin = ......................
- title = ................................. =>Tool Tip Text.
Example 1:
<html>
<head>
<title> My Web Page </title>
</head>
<body bgcolor=green text=yellow leftmargin=100 topmargin=100
title="This is My First Web Page">
WELCOME TO HTML
</body>
</html>
Example 2: For Back Ground Image.
<html>
<head>
<title> My Web Page </title>
</head>
<body background="C:/a.gif (address of the image)" topmargin=80>
WELCOME TO HTML
</body>
</html>
Heading Tags:
5. <h1>.........................</h1>=> Level1 Heading
6. <h2>.........................</h2>=> Level1 Heading
7. <h3>.........................</h3>=> Level1 Heading
8. <h4>.........................</h4>=> Level1 Heading
9. <h5>.........................</h5>=> Level1 Heading
10. <h6>.........................</h6>=> Level1 Heading
Example for Heading Tags:
<html><body>
<h1>http://worldofprogramminglang.blogspot.com</h1>
<h2>http://worldofprogramminglang.blogspot.com</h2>
<h3>http://worldofprogramminglang.blogspot.com</h3>
<h4>http://worldofprogramminglang.blogspot.com</h4>
<h5>http://worldofprogramminglang.blogspot.com</h5>
<h6>http://worldofprogramminglang.blogspot.com</h6>
</body>
</html>
No comments:
Post a Comment