Horizontal lines are very beautiful feature of HTML. Wapmasters often need these lines in their wapka or XTGem wapsites. So I'm going to publish how to do it along with it's awesome attributes. In this post you will learn How to Draw Horizontal (HR) Lines in HTML in Wapka. So follow the article neatly.
By size attribute in hr tag, you can define the size of line. Here it is 5. You can choose any size.
By colour attribute you can pick the colour of the line. Here it is blue. You can choose red, yellow, pink whatever you like.
By width attribute you can define the width of the line you are going to draw. It comes pretty handy sometimes.
Watch demo of all the codes in the link below::
<hr />
By <hr /> you can easily draw a normal straight horizontal line through out the site. Remember to finish the tag in itself. It doesn't need any closing tag (exactly like br tag).<hr size="5"/>
By size attribute in hr tag, you can define the size of line. Here it is 5. You can choose any size.
<hr color="blue"/>
By colour attribute you can pick the colour of the line. Here it is blue. You can choose red, yellow, pink whatever you like.
<hr width="75%"/>
By width attribute you can define the width of the line you are going to draw. It comes pretty handy sometimes.
<hr color="blue" size="5" width="75%"/>
You can combine all of the codes above and form a awesome looking compound line easily.Watch demo of all the codes in the link below::