HTML Part 021_Type Attributes
Type Attributes
<ol> ট্যাগের সব সময়
যে ধারাবাহিক ভাবে নাম্বারে এ আসতে হবে তা নয়,
1, 2,3 বা A,B,C বা a,b,c বা I,II,III বা i,ii,iii ইত্যাদি বিভিন্ন ভাবে প্রর্দশন করা যাবে। এক্ষেত্রে type নামে attributes ব্যবহার করতে হবে। এই ট্যাগের ফরম্যাট হচ্ছে:
<ol
type=”letter” or number>............</ol>
নিম্নলিখিত কোডিং সহযোগে একটি HTML ফাইল তৈরি করুন। লক্ষ্য করুন এবার নাম্বারের বদলে অন্য সংখ্যা আসবে এবং
Type="A" এবং Type="I" ইত্যাদি দেওয়া হয়েছে।
<!DOCTYPE
html>
<html>
<body>
<h1>
NOVA COURSES</h1>
<strong>Programming
Courses</strong>
<ol>
<li>C/C++
Programing.</li>
<li>Access
Programing.</li>
<li>Visual
Basic Programing.</li>
<li>Java
Programing.</li>
<li>Flash
Scripting.</li>
</ol>
<strong>Programming
Courses</strong>
<ol
type="A">
<li>C/C++
Programing.</li>
<li>Access
Programing.</li>
<li>Visual
Basic Programing.</li>
<li>Java
Programing.</li>
<li>Flash
Scripting.</li>
</ol>
<p><strong>Multimedia
Courses</strong></p>
<ol
type="a">
<li>
Graphics Courses.</li>
<li>
Editing Courses.</li>
<li>
2D Animation Courses.</li>
<li>
3D Animation Courses.</li>
</ol>
<strong>Programming
Courses</strong>
<ol
type="I">
<li>C/C++
Programing.</li>
<li>Access
Programing.</li>
<li>Visual
Basic Programing.</li>
<li>Java
Programing.</li>
<li>Flash
Scripting.</li>
</ol>
<p><strong>Multimedia
Courses</strong></p>
<ol
type="i">
<li>
Graphics Courses.</li>
<li>
Editing Courses.</li>
<li>
2D Animation Courses.</li>
<li>
3D Animation Courses.</li>
</ol>
</body>
OL এর Nested List
Nested লিষ্ট এর অর্থ হচ্ছে একটি ট্যগের মধ্যে আবার ও একই ধরনের লিষ্ট ট্যাগ বা
অন্য লিষ্ট বা ট্যাগের প্রয়োগ।
উদাহরণ স্বরূপ কোড হচ্ছে নিম্নরূপ। লক্ষ্য করুন এবার নাম্বারের বদলে অন্য
সংখ্যা আসবে-
<!DOCTYPE html>
<html>
<head>
<title> example of
nested ordered list</title>
</head>
<body>
<h1> NOVA
COURSES</h1>
<p><strong>Programming
Courses</p></strong>
<ol
type="A">
<li>C/C++
Programing.</li>
<li>Access
Programing.</li>
<li>Visual Basic
Programing.</li>
<li>Java
Programing.</li>
<li>Flash
Scripting.</li>
</ol>
<p><strong>Multimedia
Courses</strong></p>
<ol
type="1">
<li> Graphics
Courses.
<ol type="I" >
<li> Photoshop.</li>
<li> Illustrator.</li>
<li> Page Making.
<ol type="i" >
<li> Quark Xpress.</li>
<li> Page Making.</li>
<li> In Disign.</li>
</ol>
</li>
</ol>
<li>Editing Course
</li>
<li>2D/3D Animation
Course</li>
</ol>
</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 ********************************************