HTML I Notes
Horizontal Rule The <HR> tag produces a horizontal line spread across the width of the browser window. Attributes of <HR> tag Attribute Value Align Left Center right Noshade Noshade Size (Thickness) pixels Width (length of the horizontal rule) pixels% Prog1. Write html code to display 2D and 3D horizontal rules using all its attributes. <HTML> <HEAD> <TITLE> Horizontal Rules </TITLE> </HEAD> <BODY> The <HR> tag produces a horizontal line spread across the width of the browser window. The following rules have absolute widths of 80 and 150 <HR SIZE=36 WIDTH=80 align= left> <BR> <HR SIZE=50 WITH=200 noshade> </BODY> </HTML> Comments <!-- and --> Comments are one type of textual content ...