Tag HTML o
- 24-07-2022
- Trung Minh
- 0 Comments
In questa lezione freetuts ti mostrerà come usare il tag ol in HTML, che è un tag elenco con formato numerico.
Il tag ol definirà un elenco ordinato, che sarà numerato o alfabetico.
Utilizzare il tag li per identificare gli elementi nell'elenco.
Come usare il tag ol in HTML
Ad esempio , usa il tag ol e il tag li per creare un elenco di corsi.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <ol> <li>PHP</li> <li>Javascript</li> <li>Css</li> <li>HTML</li> </ol> </body> </html>
Attributi del tag HTML ol
Questa carta ha 3 proprietà tnihs di base come segue:
- invertito – l'elenco verrà ordinato dall'alto al basso.
- inizio – il valore numerico iniziale dell'elenco.
- tipo: specifica il tipo di carattere di markup da utilizzare nell'elenco.
Esempio : utilizzare l'attributo type del tag ol per creare un elenco di corsi contrassegnati con una lettera maiuscola.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <ol type="A"> <li>PHP</li> <li>Javascript</li> <li>Css</li> <li>HTML</li> </ol> </body> </html>