Computer Science, asked by mahima7819, 7 months ago

Write the HTML code for the following:

a) The largest size heading , ROTARY PUBLIC SCHOOL

b) Two lines break after the paragraph

c) To create unordered list of grocery items

d) To create ordered list of stationery items

e) Background color of webpage is Aqua

f) Text with font size 5 font style Times New Roman​

Answers

Answered by BLANKBABA
1

Answer:

Brainliest Please

Explanation:

a) <h1> ROTARY PUBLIC SCHOOL </h1>

b) <p> This is a paragraph </p> <br> <br>

c) <ul>

<li> Rice </li>

<li> Cereal </li>

<li> Grain </li>

</ul>

d) <ol itemtype="1">

<li> Book </li>

<li> Pen </li>

<li> Copy </li>

</ol>

e) <body bgcolor="aqua"> Something is here </body>

f) <p style="font-size:5;font-family:Times New Roman;">Dummy Text</p>

Similar questions