Category HTML

HTML Images | Image Tag in HTML

HTML image size using height and width attributes

In this tutorial, we will learn how to add images on a HTML web page or document. We will also learn how to add alternative text to images to improve accessibility for the site visitors who use screen readers. An…

Types of Links in HTML

Linking to sections within the same page using id

In this tutorial, we will understand how to create different types of links in HTML with the help of examples. Links, technically known as hyperlinks, are the very essence of the web, because they are the feature that enables interconnection…

Links in HTML: Create, Example

Basic syntax create a link in HTML

In HTML, a link, also known as a hyperlink, is a reference (or an address) to a resource on the web. It can point to any resource on the web, such as web pages, images, videos, files, documents, or other…

Definition List in HTML

Customize definition list

Definition list (also known as description list) in HTML slightly differs from the other two lists that we discussed in the previous tutorial. Each list item in a definition list has two parts: A term The term’s definition Thus, the…

Unordered List in HTML | Bulleted List

An example of unordered list in HTML

An unordered list in HTML is a collection of items that do not have a specific order or sequence. By default, most of the web browsers will display unordered lists with a bullet point (•) before each list item. Therefore,…