-
Adding an Image to a Web Page
-
The role of images in a webpage
-
Specifying locations in web pages
-
Customizing Links
-
Exploring link options
-
Basic links
-
Why links?
-
Submit and Reset buttons
-
Multiline text boxes
-
Drop-down list fields
-
File upload fields
-
Hidden fields
-
Checkboxes and radio buttons
-
Password fields
-
Text fields
-
Input tags
-
Creating forms
-
How a form looks like?
-
Adding Headers Cells
-
Creating a Basic Table
-
Description list
-
Unordered list
-
Ordered list
-
Lists
-
More formatting elements
-
Other text elements
-
Working with language elements
-
Abbreviations, Definitions, Quotations and Citations
-
Creating Breaks
-
Basic text formatting elements
-
Creating a page from scratch using VS Code
-
Creating a page from scratch using Notepad
-
Setting Up the Basic Document Structure
-
Parents, Children, Descendants and Siblings
-
The Outer Structure of an HTML Document
-
Element Attributes
-
HTML elements
-
How HTML creates a website
-
Creating HTML markup
-
How a website works
-
Web Browsers vs Web Servers and Internet/HTTP
-
Webpage vs Website
Description list
Description lists group terms and descriptions into a single list and require three elements to complete the list:
- <dl>: Holds the list descriptions (dl = description list)
- <dt>: Defines a term in the list (dt = definition term)
- <dd>: Defines a description for a term (dd = description list description)
You can have as many terms (defined by <dt>) in a list (<dl>) as you need. Each term can have one or more descriptions (defined by <dd>).
The following description list includes three terms, one of which has two descriptions :https://stackblitz.com/edit/web-platform-15r9sj?embed=1&file=index.html&hideDevTools=1&hideExplorer=1&hideNavigation=1