HTML Introduction

HTML Basic Syntax

HTML Block Element

HTML Formatting

HTML Quotation

HTML Links

HTML List

HTML Table

HTML Audio

HTML Video

HTML Image

HTML Iframe

HTML Favicon

HTML Form

HTML Input Types

HTML Marquee

HTML Meta tag

Learn CSS

Learn Javascript

Learn Django

Everything about html quotation tags

Most used quotation tags list:

1. <q>
For short Quotation <q> tag is used.

2. <address>
Inside the address tag, we write contact(email, phone No, Instagram, etc.) and address(city, country, road No, etc) related information of the owner, author, or company.
The written text inside the address tag is always rendered in italic. Here you will get a default line break before and after the <address> element.

3. <abbr>
Suppose you have a sentence and you want that if the user takes the cursor to a particular word or some words then some information should be shown. In this case, you will write that text inside the abbr tag. For hidden or newly shown text we will use the title attribute inside the abbr opening tag and in the title attribute, we will write the hidden text.

4. <blockquote>
<blockquote> tag is used to define a section that is quoted from another source.

Example:

<!DOCTYPE html>
<html>
<head>
<title> </title>
<style>
     </style>
</head>
<body>

<h4>
    This is a <q>programming learning free</q> education website
</h4>

<h4>
    This is a <blockquote>programming learning free</blockquote> education website
</h4>

<h4>
    This is a <abbr title="Web development">programming learning free</abbr> education website
</h4>

<address>
    CEO: Rafsun Ahmad.
    Visit us at:
    freeCodeEdu.com
    DOX NO6, FFFKKK
    USA
</address>

</body>
</html>

CodersAim is created for learning and training a self learner to become a professional from beginner. While using CodersAim, you agree to have read and accepted our terms of use, privacy policy, Contact Us

© Copyright All rights reserved www.CodersAim.com. Developed by CodersAim.