HTML

HTML Unordered List

HTML Unordered List | HTML Bulleted List HTML’s Unordered List or Bulleted List shows items in a list of bullet points. When we don’t need to show the items in a certain order, we can use an unordered list. The HTML ul tag is used for a list that is not in order. There are […]

HTML Unordered List Read More »

HTML Ordered List

HTML Ordered List | HTML Numbered List HTML’s Numbered List or Ordered List shows items with numbers. The HTML ol tag is used for a list that is in order. We can use an ordered list to show things in numerical order, alphabetical order, or any other way that puts the focus on the order.

HTML Ordered List Read More »

HTML Lists

Lists in HTML are used to list information. Web developers can use HTML lists to group items that go together. All lists may contain one or more list elements. There are three kinds of lists in HTML: Ordered List or Numbered List (ol) Unordered List or Bulleted List (ul) List of explanations or explanations (dl)

HTML Lists Read More »

HTML Table

Web developers can put data into rows and columns using HTML tables. Table in HTML The HTML table tag shows data in a table format (row by column). A row can have more than one column. With the help of the tr>, td>, and th> elements, we can use the table> element to make a

HTML Table Read More »

HTML img tag

HTML Image Use the HTML img tag to show an image on a web page. HTML’s img tag is an empty tag that only has attributes. HTML’s image element doesn’t use closing tags, so it doesn’t have any. HTML Images Syntax The HTML <img> tag is used to embed an image in a web page.

HTML img tag Read More »

HTML Hyperlinks

There are links on almost every web page called HTML hyperlinks. Links enable visitors to navigate between pages by clicking. HTML Links – Hyperlinks Hyperlinks are links in HTML. You can access another paper by clicking on a link. The mouse arrow will change into a tiny hand when you move the mouse pointer over

HTML Hyperlinks Read More »

HTML Colors

Predefined colour names or RGB, HEX, HSL, RGBA, or HSLA values are used to specify colours in HTML. In CSS3, RGBA and HSL/HSLA colours are introduced. Red, green, and blue (RGB) were the only colours we used before to CSS2. Screen colours RGB and RGBA are not suggested for printing. There are 16 million different

HTML Colors Read More »

HTML Comments

HTML Comment Tag HTML comments are not shown in the browser, but they can help you document your HTML source code. You can add notifications and reminders to your HTML code with comments. Comments can be used to hide content. This can help if you want to hide content for a short time. More than

HTML Comments Read More »

HTML Quotation and Citation Elements

In this chapter, we’ll talk about the HTML elements <blockquote>, <q>, <abbr>, <address>, <cite>, and <bdo>. HTML’s <blockquote> HTML’s <blockquote> tag is used for quotes. The HTML <blockquote> element defines a section that quotes from another source. Most browsers put <blockquote> elements indented. <!DOCTYPE html> <html> <body> <p>Here is blockquote:</p> <blockquote cite=”http://www.coderazaa.com”> Lorem Ipsum is

HTML Quotation and Citation Elements Read More »

HTML Text Formatting

HTML Formatting is a way to change the way text looks and feels. HTML lets us format text without having to use CSS. HTML has many tags for formatting. Text can be made bold, italic, or underlined by using these tags. In HTML and XHTML, there are almost 14 different ways to show text. In

HTML Text Formatting Read More »

Scroll to Top