Computer Science, asked by Lakshay3767, 11 months ago

How do we add a definition term in HTML?

Answers

Answered by smart35
2

w3schools.com

HTML <dl> Tag

Example

A description list, with terms and descriptions:

<dl>

<dt>Coffee</dt>

<dd>Black hot drink</dd>

<dt>Milk</dt>

<dd>White cold drink</dd>

</dl>

Definition and Usage

The <dl> tag defines a description list.

The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name).

Browser Support

Element

<dl> Yes Yes Yes Yes Yes

Differences Between HTML 4.01 and HTML5

In HTML 4.01, the <dl> tag defines a definition list.

In HTML 5, the <dl> tag defines a description list.

Global Attributes

The <dl> tag also supports the Global Attributes in HTML.

Event Attributes

The <dl> tag also supports the Event Attributes in HTML.

Related Pages

HTML tutorial: HTML Lists

HTML DOM reference: DList Object

Default CSS Settings

Most browsers will display the <dl> element with the following default values:

Example

dl {

display: block;

margin-top: 1em;

margin-bottom: 1em;

margin-left: 0;

margin-right: 0;

}

COLOR PICKER

colorpicker

HOW TO

Tabs

Dropdowns

Accordions

Side Navigation

Top Navigation

Modal Boxes

Progress Bars

Parallax

Login Form

HTML Includes

Google Maps

Range Sliders

Tooltips

Slideshow

Filter List

Sort List

SHARE

CERTIFICATES

HTML

CSS

JavaScript

SQL

Python

PHP

jQuery

Bootstrap

XML

Top Tutorials

HTML Tutorial

CSS Tutorial

JavaScript Tutorial

How To Tutorial

SQL Tutorial

Python Tutorial

W3.CSS Tutorial

Bootstrap Tutorial

PHP 5 Tutorial

PHP 7 Tutorial

jQuery Tutorial

Java Tutorial

Top References

HTML Reference

CSS Reference

JavaScript Reference

SQL Reference

Python Reference

W3.CSS Reference

Bootstrap Reference

PHP Reference

HTML Colors

jQuery Reference

Angular Reference

Java Reference

Top Examples

HTML Examples

CSS Examples

JavaScript Examples

How To Examples

SQL Examples

Python Examples

W3.CSS Examples

Bootstrap Examples

PHP Examples

jQuery Examples

Java Examples

XML Examples

Web Certificates

HTML Certificate

CSS Certificate

JavaScript Certificate

SQL Certificate

Python Certificate

jQuery Certificate

PHP Certificate

Bootstrap Certificate

XML Certificate

W3Schools is optimized for learning, testing, and training. Examples might be simplified to improve reading and basic understanding. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using this site, you agree to have read and accepted our terms of use, cookie and privacy policy. Copyright 1999-2019 by Refsnes Data. All Rights Reserved.

Powered by W3.CSS.

W3Schools.com

Similar questions