Horizontal line size ka code of html
learn:-
hr line size:-
* We can change the default line size using size attribute.
* we can use more than one attribute .
* In this example we have used color and size attribute.
# Horizontal line size code#
<!doctype html>
<html>
<head>
<title>
horizontal line size
</title>
</head>
<body>
first line <hr color="red" size="50">
second line <hr color="blue" size="60">
third line <hr color="green" size="70">
</body>
</html>
but output:-
this is body of depand as per as body defined by
first line:-π₯π₯π₯π₯π₯π₯π₯π₯π₯π₯
second line:-π©π©π©π©π©π©π©π©π©π©
third line:-π¦π¦π¦π¦π¦π¦π¦π¦π¦π¦
Comments