<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<!-- Main Heading -->
<h1>
<u><i>My Name is DivyanshuKhare</i></u>
</h1>
<hr> <!---This is for ruler---->
<!-- This is the first parent list -->
<ul type = "square">
<li><h2>
My favorite books
</h2></li>
<ul type = disc>
<li>Harry Potter</li>
<li>The God of Small Things</li>
<li>The Prophet</li>
</ul>
</ul>
<ul type="square">
<li><h2>
My favorite writers
</h2></li>
<ul type ="circle">
<li> JK Rowling</li>
<li>Arundhati Roy</li>
<li>Kahlil Gibran</li>
</ul>
</ul>
<!-- This is the second parent list -->
<ol type="I">
<li><h2>
My favorite subjects
</h2></li>
<ol type = "a">
<li> Data Structures and Algorithms</li>
<li>Operating System</li>
<li>DBMS</li>
</ol>
</ol>
<ol type = "I" start ="2">
<li><h2>
Online courses I wish to explore
</h2></li>
<ol start="4">
<li>Frontend using HTML, CSS, JS</li>
<li>Frontend using React.js</li>
<li>Backend using Node.js</li>
</ol>
</ol>
</body>
</html>
Comments
Post a Comment