Search This Blog

Showing posts with label HTML Body Tags. Show all posts
Showing posts with label HTML Body Tags. Show all posts

HTML Body Tag With VLink Attribute Example

HTML Body Tag With VLink Attribute Example:
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body vlink="blue">
<h2> Body Tag With VLink Attribute Example </h2>
<a href="#"> link1 </a>
</body>
</html>
OUTPUT
HTML Body Tag With VLink Attribute Example

HTML Body Tag With ALink Attribute Example

HTML Body Tag With ALink Attribute Example:
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body alink="yellow">
<h2> Body Tag With ALink Attribute Example </h2>
<a href="#"> link1 </a>
</body>
</html>
OUTPUT
HTML Body Tag With ALink Attribute Example

HTML Body Tag With Link Attribute Example

HTML Body Tag With Link Attribute Example:
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body link="red">
<h2> Body Tag With Link Attribute Example </h2>
<a href="#"> link1 </a>
</body>
</html>
OUTPUT
HTML Body Tag With Link Attribute Example

HTML Body Tag With Text Attribute Example

HTML Body Tag With Text Attribute Example:
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body text="red">
<h2> Body Tag With Text Attribute Example </h2>
</body>
</html>
OUTPUT
HTML Body Tag With Text Attribute Example

HTML Body Tag With Background Example

HTML Body Tag With Background Example:
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body background="Img/img.png">
<h2> Body Tag With Background Attribute Example </h2>
</body>
</html>

OUTPUT
HTML Body Tag With Background Example

HTML Body Tag With Bgcolor Attribute Example

HTML Body Tag With Bgcolor Attribute Example:
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body bgcolor="lightblue">
<h2> Body Tag With Bgcolor Attribute Example </h2>
</body>
</html>

OUTPUT
HTML Body Tag With Bgcolor Attribute Example

HTML Body Tag Example

HTML Body Tag Example:
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> Body Tag Example </h2>
</body>
</html>

OUTPUT
HTML Body Tag Example