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