CBSE BOARD X, asked by ankita6672, 1 year ago

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

Answers

Answered by sagarmankoti
6

<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>


sagarmankoti: R.
sagarmankoti: __
sagarmankoti: M.
sagarmankoti: A.
sagarmankoti: N.
sagarmankoti: K.
sagarmankoti: O.
sagarmankoti: T.
sagarmankoti: I.
sagarmankoti: It wasn't coming together so I wrote like this.
Answered by namu990
2

<HTML>

<HEAD> CARRIER OPTIONS

</HEAD>

<TITLE> MEDICAL </TITLE>

<BODY>

<FONT > BULLETED LIST </FONT>

<!-- ____________________ -->

<H1> MEDICINE </H1>

<H2>RESEARCH </H2>

<FONT> NUMBERS </FONT>

<H2> ENGINEERING <H2>

<H3> MARKETING </H3>

</BODY>

</HTML>

Similar questions