HTML code is easy to learn/সহজ এইচটিএমএল কোড শিখুন-14 (HTML List
HTML List
Web site for the list is used to sort the data presentation. HTML can be created through two types of list, a list is in order, and the other is anaardara List. Lets you list the order of information is presented, and the serial number of the beginning of each line. In order to delete the line in front of a small round or square symbols in each list. List of power in order to create HTML <ul> </ ul> and in order to create a list <ol> </ ol> tags are used.
Example Program
<html>
<head>
<title> www.hedaet.com </ title>
</ Head>
<body bgcolor=\" #00CC99\" style=\"text-align:center\">
<h4> Disc Type list </ h4>
<ul type=\"disc\">
<li> Home </ li>
<li> About Us </ li>
<li> Contact Us </ li>
</ Ul>
<h4> Circle Type list </ h4>
<ul type=\"circle\">
<li> HTML </ li>
<li> CSS </ li>
<li> PHP </ li>
</ Ul> <h4> Square Type list </ h4>
<ul type=\"square\">
<li> Pragaph </ li>
<li> Table </ li>
<li> List </ li>
</ Ul>
</ Body>
</ Html>
Tuku Notepad and then open the code file from the menu and click the Save as File name: index.html, Save as type: All files, and save the index.html file to open the show with Mozilla Firefox.
Example:
<html>
<head>
<title> www.hedaet.com </ title>
</ Head>
<body bgcolor=\" #00CC99\" style=\"text-align:center\">
<h3> Alphabet Type list </ h3>
<ol type=\"A\">
<li> Home </ li>
<li> About Us </ li>
<li> Contact Us </ li>
</ Ol>
<h3> Number Type list </ h3>
<ol type=\"1\">
<li> HTML </ li>
<li> CSS </ li>
<li> PHP </ li>
</ Ol>
<h3> Roman Number Type list </ h3>
<ol type=\"I\">
<li> Pragaph </ li>
<li> Table </ li>
<li> List </ li>
</ Ol>
</ Body>
</ Html>
Tuku Notepad and then open the file menu, Save as the above code by clicking File name: index.html, Save as type: All files, and save the index.html file to open the show with Mozilla Firefox.
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
HTML code is easy to learn/সহজ এইচটিএমএল কোড শিখুন-14 (HTML List
এইচটিএমএল লিষ্ট
ওয়েব সাইটকে সাজাতে বা তথ্য উপস্থাপনার জন্য লিষ্ট ব্যবহার করা হয় । HTML এর মাধ্যমে দুই ধরণের লিষ্ট তৈরি করা যায়, একটি হচ্ছে অর্ডার লিষ্ট এবং অপরটি হচ্ছে আনঅর্ডার লিষ্ট । অর্ডার লিষ্টে বিভিন্ন তথ্যকে পর্যায়ক্রমিকভাবে উপস্থাপন করা হয় এবং প্রতিটা লাইনের শুরুতে ক্রমিক সংখ্যা থাকে। অন্যদিকে আন অর্ডার লিষ্টে প্রতিটা লাইনের সামনে ছোট বৃত্তাকার বা বর্গাকার চিহ্ন থাকে। HTML এর মাধ্যমে আন অর্ডার লিষ্ট তৈরি করার জন্য <ul></ul> এবং অর্ডার লিষ্ট তৈরি করার জন্য <ol></ol> ট্যাগ ব্যবহার করা হয়।
উদাহরণ প্রোগ্রাম
<html>
<head>
<title> www.hedaet.com</title>
</head>
<body bgcolor=\" #00CC99\" style=\"text-align:center\">
<h4>Disc Type list</h4>
<ul type=\"disc\">
<li>Home</li>
<li>About Us</li>
<li>Contact Us</li>
</ul>
<h4>Circle Type list</h4>
<ul type=\"circle\">
<li>HTML</li>
<li>CSS</li>
<li>PHP</li>
</ul><h4>Square Type list</h4>
<ul type=\"square\">
<li>Pragaph</li>
<li>Table</li>
<li>List</li>
</ul>
</body>
</html>
নোটপ্যাড open করে code টুকু লিখে file মেনু থেকে Save as এ ক্লিক করে File name: index.html , Save as type : All files, দিয়ে save করে index.html ফাইলটি Mozilla Firefox দিয়ে open করলে দেখাবে।
মেযন:
<html>
<head>
<title> www.hedaet.com</title>
</head>
<body bgcolor=\" #00CC99\" style=\"text-align:center\">
<h3>Alphabet Type list</h3>
<ol type=\"A\">
<li>Home</li>
<li>About Us</li>
<li>Contact Us</li>
</ol>
<h3>Number Type list</h3>
<ol type=\"1\">
<li>HTML</li>
<li>CSS</li>
<li>PHP</li>
</ol>
<h3>Roman Number Type list</h3>
<ol type=\"I\">
<li>Pragaph</li>
<li>Table</li>
<li>List</li>
</ol>
</body>
</html>
নোটপ্যাড open করে উপরের code টুকু লিখে file মেনু থেকে Save as এ ক্লিক করে File name: index.html , Save as type : All files, দিয়ে save করে index.html ফাইলটি Mozilla Firefox দিয়ে open করলে দেখাবে।
|