20 POINTS!!!!!!!! ANSWER THE QUESTION DOWN BELOW. IF YOU ANSWER SOMETHING INCOMPLETE OR WRONG, I WILL TAKE IT DOWN. GIVING BRAINLIEST TO WHOEVER DOES IT RIGHT. PLEASE HELP THANKS!!!!!

20 POINTS ANSWER THE QUESTION DOWN BELOW IF YOU ANSWER SOMETHING INCOMPLETE OR WRONG I WILL TAKE IT DOWN GIVING BRAINLIEST TO WHOEVER DOES IT RIGHT PLEASE HELP class=

Respuesta :

Lanuel

Answer:

The missing tags have been added below.

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.

The complete code for the web page is written below;

<! DOCTYPE html>

<head>

< title > My Favorite Fruits </ title >

</head>

<body>

<h1> My Favorite Fruits </h1>

<p1> I really love fruit. My absolute favorites are in the list below. </p1>

<ol>

<li> Bananas </li>

<li> Strawberries </li>

<li> Watermelon </li>

</ol>

</body>

</html >

Note: The code isn't indented because i'm not using an appropriate code editor.

You should ensure your html document contains a header and a body while using the appropriate tags.

The <head> is the opening tag for the header and it should be closed with the </head> while the <title> </title > tag indicates the title of the page at the top of a web browser.

The body of the document starts with the <body> and </body>.

Also, the <h> and </h> tag is used to hold the text in the body while the <p> and </p> tag is used for paragraphs.

Lastly, since we are creating a document with an ordered list, we would use the <ol> and </ol> patent tag while the child tag <li> and </li> sorts the list numerically.