Hello friends!!Welcome to our blog Techwalebnde So today is our second day of html-html basic learning, I am very excited to teach you hope so you are also in the same vibe..
Today's table of contents are as follows:
- What are anchor tag?
- What are lists?
- Your Practice assignment....
Anchor Tag
What is Anchor tag?
Attributes
- Href: The most significant is this one. It instructs the browser on the destination of the link. For instance, clicking href="https://www.example.com" would direct you to the "example.com" website.
- Target: This property indicates the location of the linked document's opening. For instance, using target="_blank" would cause the referenced document to open in a new window or tab.
- Title: This attribute gives the link's further details. You may notice a little tooltip displaying the text from the title attribute when you hover over the link.
SYNTAX:
List Tag
- Order List
- Unorder List
Order List
Using the <ol> tag, an HTML ordered list presents a list of things in a numbered format. Several characteristics of the <ol> element allow you to alter the look and feel of the list. Typical characteristics include the following:
Attributes:
- Type: Specifies the type of numbering to use. It can be "1" (default, numbers), "A" (uppercase letters), "a" (lowercase letters), "I" (uppercase Roman numerals), or "i" (lowercase Roman numerals).
- Start: The list's beginning value is specified by this attribute. Ordered lists begin with "1" by default. This feature allows you to start the list at a different number.
- Reversed: When this boolean attribute is present, it indicates that the list items should be numbered in descending order.
Syntax:
This would produce a reversed ordered list starting from "III" (uppercase Roman numeral for 3), with each item marked with an uppercase Roman numeral, like:
III. Item 3
II. Item 2
I. Item 1
Unorder List:
An unordered list in HTML is a way to organize information on a web page without any specific order or sequence....
Attributes
- Type: It changes the appearance of the bullet points in the list. You can have solid circles, hollow circles, or squares.

0 Comments