Qs:- write the coding of the following output in HTML. (2) welcome to the musical section
Answers
Answered by
0
Answer:
<html>
<head>
<h1> Welcome to the musical section. </h1>
</head>
</html>
Answered by
0
Answer:
<html>
<head>
<style>
ol {
counter-reset: orderedList;
list-style: none;
}
ol li:before {
content: "("counter(orderedList) ") ";
counter-increment: orderedList;
}
</style>
</head>
<body>
<ol>
<li> Add 1st item here </li>
<li> Welcome to the musical section </li>
<li> Add more items here </li>
<li> ... </li>
</ol>
</body>
</html>
Hope this helps you!
Attachments:
Similar questions