

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we define the start of a term in a definition list in HTML?
The HTML <dt> tag is used to define the start of a term in a definition list. A definition list is similar to other lists but in a definition list, each list item contains two entries; a term and a description.
Example
You can try to run the following code to define the start of a term in a definition list using the <dt> tag −
<!DOCTYPE html> <html> <head> <title>HTML dt Tag</title> </head> <body> <dl> <dt>Definition List</dt> <dd>A list of terms and their definitions/descriptions.</dd> <dt>JAVA</dt> <dd>Tutorial on JAVA Programming Language.</dd> <dt>Android</dt> <dd>Tutorial on Android Operating System.</dd> </dl> </body> </html>
- Related Questions & Answers
- How do we add a definition term in HTML?
- How to define a definition list in HTML?
- How do we define a dialog box in HTML?
- How do we add a menu list in HTML?
- How do we get the size of a list in Python?
- How do we define tuple in Python?
- How do we define lists in Python?
- How do we define dictionary in Python?
- How do we use a simple drop-down list of items in HTML forms?
- How can we get the definition of a MySQL view as we can get the definition of a MySQL table?
- How do we define an area in an image map with HTML?
- How do we display a script in HTML?
- How do we get size of a list in Python?
- How to define the number of nodes in a node list with JavaScript HTML DOM?
- How do we use function literal to define a function in JavaScript?
Advertisements