0% found this document useful (0 votes)
8 views8 pages

Class 02 HTML

The document contains two HTML sections featuring lists of items. The first section includes an ordered list of groceries and an unordered list of snacks, while the second section features multiple ordered lists of electronic devices. The lists utilize various formatting styles such as italics, bold, and strikethrough.

Uploaded by

Md Rayef Enam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views8 pages

Class 02 HTML

The document contains two HTML sections featuring lists of items. The first section includes an ordered list of groceries and an unordered list of snacks, while the second section features multiple ordered lists of electronic devices. The lists utilize various formatting styles such as italics, bold, and strikethrough.

Uploaded by

Md Rayef Enam
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

<html>

<head>
<title> HTML List </title>
</head>
<body>
<h3><u>Rupa's Bazar:</u></h3>
<ol type="1">
<li> Alu </li>
<li> Chips</li>
<li> Pen </li>
</ol>
<ul type="circle">
<li>Ice Cream</li>
<li>Biscuits</li>
</ul>
<body>
</html>
<html>
<head>
<title> HTML List </title>
</head>
<body>
<ol type="a">
<li> <i> Laptop </i> </li>
<li> <del> Desktop </del></li>
</ol>
<ol start="3">
<li> <b> Mobile </b></li>
<li> PC </li>
<li> TAB </li>
</ol>
<ol type="i">
<li> Pumtop </li>
<li> Notebook </li>
</ol>
<body>
</html>

You might also like