Computer Science, asked by Madhurijha28, 11 months ago

write html code to display the names of any 5 subjects o. different lines (use <Br> tags). change the <Br> tags and Notice the change.next try to display the names with a number in front of them. finally,change the numbers in bullets.

Answers

Answered by adityakumar7430
2

Answer:

you bought laptop and code

Answered by yudhistiricaspa
8

Answer:

i wrote 4 diffrent programs

plz mark brainliest

took time

Explanation:

i) name of subjects with <br>

<html>

   <body>

       <p>

           hindi<br>

           english<br>

           maths<br>

           chem<br>

           bio<br>

       </p>

   </body>

</html>

ii) without <br> tags

<html>

   <body>

       <p>

           hindi

           english

           maths

           chem

           bio

       </p>

   </body>

</html>

iii) with numbers

<html>

   <body>

       <p>

          1.hindi<br>

          2.english<br>

          3.maths<br>

          4.chem<br>

          5.bio<br>

       </p>

   </body>

</html>

iv) with bullets

<html>

   <body>

       <ul style="list-style-type:disc">

          <li>hindi</li><br>

           <li>english</li><br>

           <li>maths </li><br>

           <li>chem</li><br>

           <li>bio</li><br>

       </ul>

   </body>

</html>

Similar questions