Computer Science, asked by haneenwkaddoura, 4 months ago

Give one line code for the following

(a) To make “My School Web Page” as the title of a web page. (b) To change the background color of a web page to blue. (c) To insert a horizontal line of yellow color

(e) To insert the list as given below:

(i) SHIVANK

(ii) SARTHAK

(iii) SANYAM
please help

Answers

Answered by charley40
0

Explanation:

<html>

<head><title>My School Web Page</title></head>

<body bg color ="blue">

<hr size=12 color=yellow>

<ol type="i" start= 1>

<li>SHIVANK</li>

<li>SARTGAK</li>

<li>SANYAM</li>

</ol>

</body>

</html>

Similar questions