XHTML introductory tutorial: Use of list tags

XHTML introductory tutorial: Use of list tags
Lists are used to list a series of similar or related items. Unordered list (bullet list)
The tag of an unordered list is <ul></ul>, and each list item uses the <li> tag. Next, we will use an unordered list to rewrite our "index.html". After opening the previously saved file, modify the code in the "Services provided to students" section to the following unordered list code:
<h3>Services for Students</h3>
<ul>
<li>Write homework for winter and summer vacations (math <b>can't be guaranteed</b> to have no mistakes, Chinese can't be guaranteed to have no typos, English homework can be done by someone else)</li>
<li>If you help bully students in the fourth grade or below, you will be charged an additional fee.</b> </li>
<li> The Parent Association will help <i>impersonate parents</i>. </li>
</ul>
After saving, browse the web page and make sure your web page is the same as this page. . Ordered list The tag of ordered list is <ol></ol>, and the list items are still <li>. We use the ordered list to rewrite the "parent section" of "index.html" and change the <ul></ul> in the code just modified to <ol></ol>:
<ol>
<li>Write homework for winter and summer vacations (I can't guarantee that there will be no mistakes in math, I can't guarantee that there will be no typos in Chinese, and you can ask someone else to do your English homework! </b>). </li>
<li>Helping to bully students <strong>below grade 4</strong> will incur additional fees. </li>
<li>The Parent Association will help <i>impersonate parents</i>. </li>
</ol>
After saving, browse the web page and make sure that the effect of your page is the same as this page. We can see that the difference between an unordered list and an ordered list is whether there is a dot or a number in front of each item.

<<:  What are the benefits of using B+ tree as index structure in MySQL?

>>:  A brief introduction to VUE uni-app core knowledge

Recommend

How to move a red rectangle with the mouse in Linux character terminal

Everything is a file! UNIX has already said it. E...

Pure CSS to achieve the water drop animation button in Material Design

Preface You should often see this kind of special...

React internationalization react-i18next detailed explanation

Introduction react-i18next is a powerful internat...

Example code for setting hot links and coordinate values ​​for web images

Sometimes you need to set several areas on a pict...

Start nginxssl configuration based on docker

Prerequisites A cloud server (centOS of Alibaba C...

Semantics, writing, and best practices of link A

The semantics, writing style, and best practices ...

Nest.js hashing and encryption example detailed explanation

0x0 Introduction First of all, what is a hash alg...

uniapp dynamic modification of element node style detailed explanation

Table of contents 1. Modify by binding the style ...

Solution to the problem that elements with negative z-index cannot be clicked

I was working on a pop-up ad recently. Since the d...

A brief discussion on MySQL large table optimization solution

background The amount of new data in the business...

Implementing circular scrolling list function based on Vue

Note: You need to give the parent container a hei...

How to use nginx to access local static resources on Linux server

1. Check whether port 80 is occupied. Generally, ...

How to implement paging query in MySQL

SQL paging query:background In the company's ...

MySQL detailed summary of commonly used functions

Table of contents MySQL Common Functions 1. Numer...

Answers to several high-frequency MySQL interview questions

Preface: In interviews for various technical posi...