1. Create a web page as shown in the given figure. You can take help of the following hints: Background colouris Aqua. Horizontal lines: colours: red, yellow, green occupying 75% of the window thickness is 20, 30, and 40, respectively. Font size is 5.
Answers
Answered by
13
1. Background colour is Aqua.
2.Horizontal lines: colours: red, yellow, green occupying 75% of the window thickness is 20, 30, and 40, respectively.
3.Font size is 5.
Explanation:
<html>
<body>
<body style="background-color:aqua;">
<hr style="height:2px;border-width:20;color:gray;background-color:red">
</hr>
<hr style="height:2px;border-width:30;color:gray;background-color:green">
</hr>
<hr style="height:2px;border-width:40;color:gray;background-color:blue">
</hr>
<font size="5">text</font>
</body>
</html>
Similar questions