HTML dt tag
- 24-07-2022
- Trung Minh
- 0 Comments
The dt tag has the function of describing the name of the concept, the definition in the list of definitions.
Use in combination with the dd tag (describe the content of the definition) and the dl tag (describe the list of definitions)
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>
Attributes of the dt . tag
The dt tag is supported Global Attributes in HTML.