Jadual Kandungan
Syntax of HTML Unordered List
Example #2
Types of Attributes for HTML Unordered List
1. Attribute type=’disc.’
2. Attribute type=’square.’
3. Attribute type=’circle.’
Replacing HTML list Items with Customizable Images
Example #1 – Style properties between the list elements
Example #2 – With image style
Conclusion
Rumah hujung hadapan web html tutorial Senarai Tidak Tertib HTML

Senarai Tidak Tertib HTML

Sep 04, 2024 pm 04:43 PM
html html5 HTML Tutorial HTML Properties HTML tags

Lists in HTML are a concept of gathering a number of data or elements arranged in a specific order organized for the purpose of being used in the program execution. HTML uses three types of lists, namely Ordered List, Unordered List and Definition List, where Unordered List is a type of list where the data or elements can be arranged in the list in no specific order. The syntax for the HTML Unordered List is

  • ………..
, where
    is the tag that indicates the unordered list type.

    The three types of lists we could use to bring order to the web pages. Below are the different types:

    1. Ordered List
    2. Unordered list
    3. Definition List

    In this article, we shall go through the unordered list specification with an example. The unordered list is a list that doesn’t require any order of numbering in their list; instead, we use bullets for the list levels.

    Syntax of HTML Unordered List

    The syntax for the unordered list is similar to the ordered list we created in the previous article. Unordered list is created using an element named

      element and ends with
    tag. The list item is embedded inside the
      element.

      <ul>
      <li></li>
      ………..
      </ul>

      Example #1

      This shows how this short item list is implemented in a browser.

      <html>
      <head>
      <title> Demo on Unordered list</title><br>   </head>
      <body bgcolor="orange" text="green" order="">
      <h1><u>Demo on Unordered list</u></h1>
      <h2>Ingredients for making of cake</h2>
      <h3>
      <ul type="square">
      <li>Baking Powder</li>
      <li >Flour</li>
      <li> Sugar</li>
      <li>Coco poder</li>
      </ul>
      <h3>
      </body>
      </html>

      Output:

      This will give you the result like

      Senarai Tidak Tertib HTML

      Example #2

      Unordered List with colors and for the positions.

      <!DOCTYPE html>
      <html>
      <head>
      <title>unordered list Demo2</title>
      </head>
      <body>
      <h1>Unordered Disc</h1>
      <ul>
      <li>Lion</li>
      <li>Tiger</li>
      <li>Giraffe</li>
      <li>Camel</li>
      </ul>
      <h1>Top Rhymes </h1>
      <ul type="square">
      <li>Johny Johny Yes papa</li>
      <li>Wheels on the Bus</li>
      <li> Baa Baa Black Sheep</li>
      </ul>
      <h1>Fruits Name List</h1>
      <ul type="circle" >
      <li > Avacado</li>
      <li> Orange</li>
      <li>Pears</li>
      <li> Banana</li>
      </ul>
      </body>
      </html>

      Output:

      Senarai Tidak Tertib HTML

      Types of Attributes for HTML Unordered List

      To figure the unordered list, there are three primary types of attributes for this unordered element. The unordered list is used where it is not required to represent the lists in any specific orders. The following sections explain the related attributes and examples of them.

      This attribute gives the type of bullets to be used in the list.

      • type =’disc’ – Gives default bullet structure
      • type =’square’ – Looks like solid box bullets
      • type =’circle’ – Gives Hollow box structure

      1. Attribute type=’disc.’

      This is the default type, and all the items are marked as bullets. Here we use type attribute, and all these attributes support in HTML 3, To define under HTML5, we are supposed to implement list-style CSS. Here is an example demo.

      Example:

      <html>
      <head>
      <title> Demo on Unordered list Types</title><br>   </head>
      <body bgcolor="pink" text="blue" order="">
      <h1><u>Demo on Unordered list Types</u></h1>
      <UL>
      <LI>This is Program Agenda.
      <UL>
      <LI>First a Welcome Note
      <LI>Second We Start with the talks
      </UL>
      <LI type="square">Opening Speech
      <LI>Mrs.Claria Winston from Ireland and Eyjolfur From Bank of America.
      <LI type="circle"> Tea Break
      <LI type="disk">Last part from the topic Data Lake By Surendran Thomas.
      </UL>
      </body>
      </html>

      Output:

      Senarai Tidak Tertib HTML

      2. Attribute type=’square.’

      Here the items are marked with Square bullets.

      Example:

      Demonstrating the HTML code with the square bullet embedded with style color and the position.

      <!DOCTYPE html>
      <html>
      <head>
      <meta name="viewport" content="width=device-width, initial-scale=1.5">
      <style>
      ul {
      list-style: square;
      }
      ul li::before {
      content: "\1022";
      color: pink;
      font-weight: bold;
      display: inline-block;
      width: 0.8em;
      margin-left: -1em;
      }
      </style>
      </head>
      <body>
      <h2>List of top hollywood movies-Square</h2>
      <ul>
      <li>World Of the wars</li>
      <li>Mission Impossible</li>
      <li>Independence Day special</li>
      <li> Behind enemy lines</li>
      </ul>
      </body>
      </html>

      Output:

      Senarai Tidak Tertib HTML

      3. Attribute type=’circle.’

      This attribute gives hollow bullet values. Below are the example rendering circle and square attribute together with the nested lists.

      Example:

      <HTML>
      <HEAD>
      <TITLE> EDUCBA List Example </TITLE>
      ;style>
      h3{
      color:orange;
      }
      ul{
      list-style: none;
      }
      ul li::before {
      content: "\25AA";
      color: brown;
      display: inline-block;
      width: 1em;
      margin-left: -0.8em;
      font-weight: bold;
      font-size:1rem;
      }
      </style>
      </HEAD>
      <BODY>
      <H1> List of Mobiles</h1>
      <UL>
      <LI> Redmi Xiami
      <LI> Iphone
      <LI> Samsung
      <LI> Nokia
      </UL>
      <H1>Mobile Operating System Supports</h1>
      <UL TYPE = "circle">
      <LI> Android
      <LI> Windows phone
      <LI TYPE = "circle"> Samsung
      <LI TYPE = "square"> Nokia
      </UL>
      </BODY>
      </HTML>

      Output:

      Senarai Tidak Tertib HTML

      Replacing HTML list Items with Customizable Images

      This would ultimately enhance the overall theme and makes the website visually good. The default bullets are replaced by native style or even can customizable using images with CSS help. Actually speaking, there are three styling lists to be used in HTML. Here we go with a list-style-type and list-style-image.

      Using image bullet is to make the lists more unique and differentiate the information by type, Giving the presentation a look on the web page.

      In the below example, the examples are demonstrated by style properties between the list elements.

      Example #1 – Style properties between the list elements

      <!DOCTYPE html>
      <html lang="en">
      <head>
      <title>HTML unordered list with Styles</title>
      </head>
      <body>
      <style>
      ul li {
      background: red;
      }
      ul.in.li {
      list-style: circle inside none;
      color: red;
      left: -20px;
      position: inside;
      text-align: left;
      width: 27px;
      }</style>
      <ul>
      <li><span> Finland is a Scandinavian Country</span></li>
      <li><span>Oslo is the capital city</span></li>
      <li><span>Iceland is known for its beauty , hiking, fishing</span></li>
      <li><span>Ranked among the chillness country in europe</span></li>
      </ul><br/>
      </body></html>

      Output:

      This will give out the output like

      Senarai Tidak Tertib HTML

      Example #2 – With image style

      <!DOCTYPE html>
      <html>
      <head>
      <style>
      ul {
      list-style-image: url('sqpurple.gif');
      }
      </style>
      </head>
      <body>
      <h2>The list-style- Demo</h2>
      <p>Harry Potter Characters:</p>
      <ul id="circle">
      <li> Harry</li>
      <li>Hermione</li>
      <li>Ron Weasely</li>
      </ul>
      </body>
      </html>

      Output:

      Senarai Tidak Tertib HTML

      Conclusion

      Maintenant que nous voyons comment créer des listes non ordonnées en HTML. Nous avons vu comment l'élément bloc non ordonné joue un rôle dans la création de pages Web avec différents exemples et avons exploré certaines fonctionnalités de liste. Même cela peut être utilisé dans les menus de navigation pour afficher verticalement. La création d'une liste non ordonnée est très simple ; il est essentiel de déterminer où corriger cette approche pour obtenir le meilleur emplacement. Autrement dit, le document parfait préfère utiliser un format de liste HTML.

      Atas ialah kandungan terperinci Senarai Tidak Tertib HTML. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn

Alat AI Hot

Undress AI Tool

Undress AI Tool

Gambar buka pakaian secara percuma

Undresser.AI Undress

Undresser.AI Undress

Apl berkuasa AI untuk mencipta foto bogel yang realistik

AI Clothes Remover

AI Clothes Remover

Alat AI dalam talian untuk mengeluarkan pakaian daripada foto.

Stock Market GPT

Stock Market GPT

Penyelidikan pelaburan dikuasakan AI untuk keputusan yang lebih bijak

Alat panas

Notepad++7.3.1

Notepad++7.3.1

Editor kod yang mudah digunakan dan percuma

SublimeText3 versi Cina

SublimeText3 versi Cina

Versi Cina, sangat mudah digunakan

Hantar Studio 13.0.1

Hantar Studio 13.0.1

Persekitaran pembangunan bersepadu PHP yang berkuasa

Dreamweaver CS6

Dreamweaver CS6

Alat pembangunan web visual

SublimeText3 versi Mac

SublimeText3 versi Mac

Perisian penyuntingan kod peringkat Tuhan (SublimeText3)

Topik panas

Cara Memasang Consult di bawah Windows Cara Memasang Consult di bawah Windows Sep 29, 2025 am 10:27 AM

1. Pergi ke laman web rasmi untuk memuat turun: https://www.consul.io/downloads.html2. Penyahmampatan: 3. Set Pembolehubah Persekitaran: Laluan untuk menambah E: \ Programfiles \ Consul; 4.CMD Mula: Konsulagent-DEV5. Buka URL: http: // localhost: 8500, anda dapat melihat antara muka dan antara muka yang ditemui oleh perkhidmatan yang berkaitan.

Cara menggema tag html dalam php Cara menggema tag html dalam php Sep 29, 2025 am 02:25 AM

Gunakan sebut harga tunggal atau melepaskan petikan berganda ke output HTML dalam PHP. Adalah disyorkan untuk membungkus rentetan dengan petikan tunggal untuk mengelakkan konflik petikan atribut. Kandungan dinamik boleh dihasilkan dalam kombinasi dengan splicing berubah atau sintaks Heredoc.

Cara membuat input telefon di HTML Cara membuat input telefon di HTML Oct 04, 2025 am 04:23 AM

UseType = "tel" inhtmlinputtoCreateatelephonefield, yang optimesMobileyBoardsandImproveSuseRexperience; EnhanceitWithatTributeSpittern, diperlukan, maxlength, andautocompleteforvalidationandusability.

Cara Autoplay Video yang Diputuskan dalam HTML Cara Autoplay Video yang Diputuskan dalam HTML Oct 04, 2025 am 12:55 AM

Gunakan Autoplay, Muted dan Playsinline Properties untuk mencapai main balik secara automatik senyap video HTML. Pelayar yang paling moden memerlukan video yang disenyapkan untuk bermain secara automatik, disenyapkan memenuhi syarat ini, PlaysInline memastikan main balik Iossafari sebaris bukannya skrin penuh, kawalan digunakan secara pilihan untuk memaparkan bar kawalan. Jika anda perlu menyahpesar, anda boleh menetapkan video.muted = palsu selepas interaksi pengguna melalui JavaScript. Apabila mencetuskan secara pemrograman, ia juga mesti ditetapkan untuk membisukan terlebih dahulu dan menangkap kesilapan yang mungkin. Tambah dengan betul sifat-sifat ini dan sahkan laluan fail untuk mencapai main balik automatik senyap yang serasi.

Cara melumpuhkan butang di html5 Cara melumpuhkan butang di html5 Oct 04, 2025 am 02:05 AM

Jawapan: Gunakan atribut kurang upaya untuk melumpuhkan butang HTML5. Menambah dilumpuhkan terus ke tag butang boleh menjadikannya kelabu dan tidak klik. Ia menyokong kawalan dinamik melalui JavaScript, seperti Document.GetElementById ("BTN"). Dilumpuhkan = palsu; dan boleh menggunakan CSS: Kelas Pseudo yang dilumpuhkan untuk menetapkan gaya untuk meningkatkan pengalaman pengguna.

Apakah tag meta viewport dalam html? Apakah tag meta viewport dalam html? Sep 29, 2025 am 12:38 AM

TheViewPortMetatAgensureSpoperdisplayMobiledEvicesBysettingWidth = peranti-Widthandinitial-Scale = 1.0, Pencegahan, UnreadableContentAndenableResveSiveSiveForBetterususabilityAcsscreens.

Apakah peranan Doctype dalam HTML5 Apakah peranan Doctype dalam HTML5 Sep 29, 2025 am 04:34 AM

Thehtml5doctypeensuresstandardsmoderendering, pencegahanModksmodeandinconsistentlayouts; itusesAsimpledeclarationWithoutDtd, enablesModernFeatureSlikeSemanTictagsandCanvas, danSupportsconsistentconsistents-consistentconconconconsibors-conssistossistiboss-browser.

Cara Autoplay Video Dengan Suara di HTML5 Cara Autoplay Video Dengan Suara di HTML5 Oct 05, 2025 am 04:10 AM

Jawapannya ialah penyemak imbas moden menyekat video-bunyi audio secara lalai. Untuk mencapai main balik automatik tanpa bunyi, autoplay dan sifat -sifat yang diredam boleh digunakan; Jika main balik bunyi diperlukan, main balik JavaScript mesti dicetuskan melalui interaksi pengguna (seperti klik), dan dapat ditentukan sama ada ia disekat dengan mengesan status janji main balik. Sesetengah laman web mengamalkan strategi main balik bisu terlebih dahulu dan kemudian membolehkan pengguna menghidupkan bunyi untuk meningkatkan pengalaman.

See all articles