Page 104 - CodePilot V5.0 C6
P. 104
<BODY>
<H1> The Road Not Taken</H1>
<H2> by Robert Frost</H2>
Two roads diverged in a yellow wood, <BR>
And sorry I could not travel both <BR>
And be one traveler, long I stood <BR>
And looked down one as far as I could <BR>
To where it bent in the undergrowth
</BODY>
</HTML>
THE <HR> TAG
The <HR> tag is used in HTML to insert a horizontal rule that visually separates sections of content
on a web page. It is typically used to divide sections within the page.
Code
3 Write the HTML code to present the given web page using <HR> tag.
<!DOCTYPE HTML>
<HTML>
<HEAD>
<TITLE> Using HR Tag </TITLE>
</HEAD>
<BODY>
<H1> The Road Not Taken</H1>
<H3> by Robert Frost</H3>
<HR>
Two roads diverged in a yellow wood, <BR>
And sorry I could not travel both <BR>
And be one traveler, long I stood <BR>
And looked down one as far as I could <BR>
To where it bent in the undergrowth
<HR>
</BODY>
</HTML>
102
CodePilot (V5.0)-VI

