Computer Science, asked by Nikki2504, 1 year ago

19. Write the HTML code for displaying the following output: a) Water - H0 b) (a+b)=a +b +2ab

Answers

Answered by rakeshchennupati143
2

HTML-Code:

<html>

     <head>

           <title>Code in HTML</title>

     </head>

     <body>

           <center>

                 <ol start="a">

                       <li>water - HO</li>

                       <li>(a+b)=a+b+2ab</li>

                 </ol>

           </center>

     </body>

</html>

explanation:

  • <html></html> tag is used for writing code in html
  • <head></head> tag defines head part of the page
  • <title></title> defines the name of the page on tab
  • <body></body> tag is where our whole code will be and the code which is in this code will only be on the web page
  • <ol></ol> is ordered list it is used to display the given content in a form of a list
  • the start attribute in ol tag defines what should be the starting of the list should be, it should be 1 or a so it will start from then 1,2,3, or a,b,c,
  • <li></li> defines the content of the list used to display per line

---Hope you got what you wanted, mark brainliest if you liked my answer  :)


rakeshchennupati143: Mark as brainliest if you liked it
Nikki2504: Thanks for your answer
rakeshchennupati143: my pleasure
Nikki2504: hiii
Similar questions