rewrite the following in correct order the code of displaying order list a) <head> b) <HTML> c) </head> d) <body> e) </HTML> f) <ol> g) </ol> h) <li> list elements I) </body>
Attachments:
Answers
Answered by
1
<html>
<head>
<body>
</head>
<ol>
<li>list elements</li>
</ol>
</body>
</html>
Answered by
1
Hi. The answer will be
<html> (Used to start a HTML document.)
<head> ----{extra info comes here like meta tags and all}
</head> -------{Head ends...}
<body> {Main content of a webpage is contained here.}
<ol> {Used to start an ordered list}
<li>list elements {The list elements come here...}
</ol> {Ordered list ends...}
</body> {Body ends....}
</html> {End of HTML page.}
Hope it helps.
Similar questions