HTML Part 022_Unordered List, Attribute Nested List, Definition List
Unordered List
Unordered লিষ্টকে Bulleted লিষ্ট ও বলে। Ordered লিষ্টে যেমন অটোমেটিক নাম্বার আসে। এখানে তেমনি
বুলেট (circle=small black circles) আসে। এই ট্যাগের ফরম্যাট হচ্ছে: <UL>...............</UL>
উদাহরণ স্বরূপ কোড হচ্ছে নিম্নরূপ:
<!DOCTYPE html>
<html>
<body>
<h1> NOVA
COURSES</h1>
<p><strong>Programming
Courses</p></strong>
<ul>
<li> Graphics
Courses.</li>
<li> Editing
Courses.</li>
<li> 2D/3D Animation
Courses.</li>
</ul>
</body>
</html>
ব্রাউজার দিযে খুললে
নিন্মেক্ত ফলাফল পাওয়া যাবে।
Attribute Nested List
Nested লিষ্ট এর অর্থ হচ্ছে একটি ট্যগের মধ্যে আবার ও একই ধরনের লিষ্ট ট্যাগ বা
অন্য লিষ্টক ট্যাগের প্রয়োগ।
উদাহরণ স্বরূপ কোড হচ্ছে নিম্নরূপ:
<html>
<body>
<hi>
NOVA COURSES</hi>
<p><strong>Programming
Courses</p></strong>
<ul
type="square">
<li>
Graphics Courses.
<ul type="circle">
<li> Photoshop.</li>
<li> Illustrator.</li>
<li>
Page Maker.</li>
</ul>
</li>
<li> Editing Courses.
<ul type="disc">
<li> Premiere.
<li> Sound Forge.
</li>
</ul>
</body>
</html>
ব্রাউজার দিযে খুললে
নিন্মেক্ত ফলাফল পাওয়া যাবে।
Definition List
এটি একটি বিশেষ ধরনের লিষ্ট। এই লিষ্টের আরেকটি নাম হচ্ছে গ্লোসারী (Glossary) লিষ্ট। যখন কোন প্রোডাক্ট সম্বন্ধে বর্ণনার
প্রয়োজন হয় এখন এটি ব্যবহৃত হয়। Term এবং বর্ণনা (Definition) এই দুইটি ভাগে এটি বিভক্ত এবং Term এর বিবরণ এর জন্য <dt> (defines the item in the list) এবং বর্ণনার জন্য<dd> (describes
the item in the list) ট্যাগ ব্যবহৃত হয়। এই ট্যাগের ফরম্যাট হচ্ছে:
<dl>...........................</dl>
উদাহরণ স্বরূপ কোড হচ্ছে নিম্নরূপ:
<!DOCTYPE
html>
<html>
<body>
<dl>
<h2><dt>
Word Processor</h2></dt>
<dd>Microsoft
Word is a word processing program. It is use to Write application, News Letter,
Writting Pad, etc. You can change its background color, Even though you can
replace the background by a picture. </dd>
<dt><h2>Spread
Sheet</h2>
<dd>Microsoft
Excel is a Spread Sheet program. Its devided by Row and Column. You can make
chart using Excel. You can solve any kind of arethmatic Program by using it.
</dd>
</dl>
</body>
</html>
ব্রাউজার দিযে খুললে
নিন্মেক্ত ফলাফল পাওয়া যাবে।
বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
The
writer of this book has told that he has written this book with the
concept of "teach yourself". On the other hand, Web Design is a thing which is
interesting to learn. He has also told that the book is full of fan and
enjoyment so that a person can learn Web Design by himself by playing with
the example projects of this book. Book's CD Link below...
RELATED POST LINKS BELOW ********************************************