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
0
hope it helps you thank
Attachments:
Answered by
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