HTML Coding Examples
1. Background Attributes
<!DOCTYPE html>
<html>
<head>
<title>Background Attributes Example</title>
</head>
<body bgcolor="lightblue" background="[Link]">
<h1>This page has a background color and image</h1>
<p>The background is light blue with an image.</p>
</body>
</html>
2. Link, Alink and Vlink Attributes
<!DOCTYPE html>
<html>
<head>
<title>Link Color Example</title>
</head>
<body link="blue" alink="red" vlink="purple">
<h2>Link, Alink, and Vlink Example</h2>
<a href="[Link] Google</a><br>
<a href="[Link] Example</a>
</body>
</html>
3. <center> and <hr> Tag
<!DOCTYPE html>
<html>
<head>
<title>Center and HR Tag</title>
</head>
<body>
<center>
<h1>This is Centered Heading</h1>
<p>This paragraph is also centered.</p>
</center>
<hr>
<p>This paragraph is below a horizontal line.</p>
</body>
</html>