CBSE BOARD X, asked by ankita6672, 11 months ago

y.
(2)
Write HTML code to generate the webpage as shown below having lists in the
style:
Career Options
• Medical
1. Medicine
2. Research
• Engineering
• Marketing

Answers

Answered by rishabh8263
0

hope it helps you thank

Attachments:
Answered by sagarmankoti
0

<html>

<head>

<title></title>

</head>

<body>

<p>Career Option</p>

<ul type="disc">

<li>Medical</li>

</ul>

<ol type="1">

<li>Medicine</li>

<li>Research</li>

<ul type="disc">

<li>Engineering</li>

<li>Marketing</li>

</ul>

</body>

</html>

Similar questions