HTML Unordered & Definition List- HSC ICT

Date

Share With Your Friends

এই পেজে আলোচিত সকল গূরূত্বপূর্ন বিষয় সমূহঃ

UNORDERED LISTS/Bulleted Lists (<ul>—-</ul>

যখন কোন লিষ্টের উপাদান গুলি কোন নির্দিষ্ট ক্রম (নাম্বার) অনুযায়ী না থেকে বিভিন্ন প্রতীক ব্যবহার করে লিষ্ট তৈরি করা হয় তখন তাকে  UNORDERED LISTS/Bulleted Lists বলে।

Attribute : Type=“Square( ∎ )/disc(⚫)/circle( ⚪ )”

DEFINITION LISTS (<DL>…. </DL>)

যখন কোনো লিষ্টের আইটেমগুলোর বর্ননা করার প্রয়োজন হয় তখন এই ধরনের লিষ্ট ব্যবহার করা হয়।

Unordered List Type - 1

				
					<html>
	<head>
	<title> Unordered List </title>
	</head>
	<body data-rsssl=1>
	<h4>Unordered List 1</h4>
	<Ul type="disc">
	    <li> Coffee </li>
        <li> Tea </li>
        <li> Milk </li>
        <li> juice</li>
        <li> Tea </li>
        <li> Cocacola</li>
    </Ul>
	</body>
</html>
				
			

OUTPUT

Ordered List Type - 2

				
					<html>
	<head>
	<title> Unordered List </title>
	</head>
	<body data-rsssl=1>
	<h4>Unordered List 2</h4>
	<Ul type="Circle">
	    <li> Coffee </li>
        <li> Tea </li>
        <li> Milk </li>
        <li> juice</li>
        <li> Tea </li>
        <li> Cocacola</li>
    </Ul>
	</body>
</html>
				
			

OUTPUT

Ordered List Type - 3

				
					<html>
	<head>
	<title> Unordered List </title>
	</head>
	<body data-rsssl=1>
	<h4>Unordered List 3</h4>
	<Ul type="square">
	    <li> Coffee </li>
        <li> Tea </li>
        <li> Milk </li>
        <li> juice</li>
        <li> Tea </li>
        <li> Cocacola</li>
    </Ul>
	</body>
</html>
				
			

OUTPUT

Defination List in HTML

				
					<html>
	<head>
	<title> Unordered List </title>
	</head>
	<body data-rsssl=1>
	<h1 Align= "center"> Defination List in HTML </h1> 
    <dl>
    <dt> Coffee </dt>
    <dd> Coffee is a drink prepared from roasted coffee beans.</dd>
    <dt> Tea </dt>
    <dd> Tea is an aromatic beverage prepared by pouring hot or boiling water 
over cured or fresh leaves of Camellia sinensis</dd>
    <dt> Milk </dt>
    <dd> Milk is a white liquid food produced by the mammary glands of mammals.</dd>
    <dt> Juice </dt>
    <dd> Juice is a drink made from the extraction or pressing of the natural liquid contained in fruit and vegetables.</dd>
    </dl> 
	</body>
</html>
				
			

OUTPUT

More
articles

Need Help?

I’m Here To Assist You

Feel free to contact me, and I will be more than happy to answer all of your questions.