Search This Blog

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

HTML Horizontal Line With Width Attribute Example

HTML Horizontal Line Tag With Width Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<center>
<h2> Horizontal Line Tag With Width Attribute Example </h2>
<hr color="red" width="500"/>
<p> Horizontal line tag we can put a line to any webpage</p>
</center>
</body>
</html>

OUTPUT
HTML Horizontal Line With Width Attribute Example

HTML Horizontal Line With Size Attribute Example

HTML Horizontal Line Tag With Size Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<center>
<h2> Horizontal Line Tag With Size Attribute Example </h2>
<hr color="red" size="10" />
<p> Horizontal line tag we can put a line to any webpage</p>
</center>
</body>
</html>

OUTPUT
HTML Horizontal Line With Size Attribute Example

HTML Horizontal Line With Color Attribute Example

HTML Horizontal Line Tag With Color Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<center>
<h2> Horizontal Line Tag With Color Attribute Example </h2>
<hr color="red"/>
<p> Horizontal line tag we can put a line to any webpage</p>
</center>
</body>
</html>

OUTPUT

HTML Horizontal Line Tag Example

HTML Horizontal Line Tag Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<center>
<h2> Horizontal Line Tag Example </h2>
<hr/>
<p> Horizontal line tag we can put a line to any webpage</p>
</center>
</body>
</html>

OUTPUT