HTML5: How to define a description list?
Solution :
HTML Code :
<!DOCTYPE html><!-- Document type declaration for HTML5 -->
<html><!-- Start of HTML document -->
<head><!-- Start of head section -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><!-- Metadata for specifying character encoding -->
<title>html description list example</title><!-- Title of the HTML document -->
</head><!-- End of head section -->
<body><!-- Start of body section -->
<dl><!-- Definition list starts -->
<dt>PHP</dt><!-- Term (definition term) -->
<dd>A server side scripting language.</dd><!-- Description (definition description) -->
<dt>JavaScript</dt><!-- Another term -->
<dd>A client side scripting language.</dd><!-- Another description -->
</dl><!-- Definition list ends -->
</body><!-- End of body section -->
</html><!-- End of HTML document -->
Explanation:
- The document starts with the doctype declaration specifying that it is an HTML5 document.
- Inside the <html> tags, the HTML document structure begins.
- The <head> section contains metadata about the document, including the character encoding specified using the meta tag.
- The <title> element sets the title of the HTML document.
- The <body> section is where the visible content of the webpage resides.
- <dl> defines a description list.
- <dt> represents a term in the list.
- <dd> represents the description or definition of the term.
- The HTML document ends with the closing </html> tag.
Live Demo :
See the Pen div-answer by w3resource (@w3resource) on CodePen.
See the solution in the browser
Supported browser
Yes | Yes | Yes | Yes | Yes |
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://www.w3resource.com/html-css-exercise/basic/dl-answer.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics