dl tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The dl tag functions to describe a list of definitions.
Use in combination with the dd tag (describe the definition content) and the dt tag (describe the name of the definition).
How to use dl . card
For example , use the dl tag in combination with the dd tag and the dt tag to describe definitions of programming languages.
<!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> <dl> <dt>PHP</dt> <dd> PHP (viết tắt của cụm từ Personal Home Page) là ngôn ngữ lập trình kịch bản (scripting language) mã nguồn mở được dùng phổ biến để ra tạo các ứng dụng web chạy trên máy chủ... </dd> <dt>Javascript</dt> <dd> Javascript là một ngôn ngữ thông dịch, chương trình nguồn của nó được nhúng hoặc tích hợp vào tập tin HTML. </dd> </dl> </body> </html>
dl . tag attributes
The dl tag is supported with Global Attributes in HTML.