Skip to main content

HTML Quotations, Citations and Comments

 HTML Quotations, Citations and Comments Elements:

               

HTML <blockquote>:

                   The html <blockquote> component characterizes a segment or section that is cited or quoted from another source.

Example:

·       Type the following code in notepad and save as quotations.html

<HTML>

<BODY>

<p>Here is a quote from Skill Learning 7 website :</p>

<blockquote cite="https://skilllearning7.blogspot.com/2020/11/html-text-formatting.html">

Welcom Every One<BR>Here you will learn different skills<BR>

</blockquote>

</BODY>

</HTML>

·       Double click the file.

·       The web page will appear in the browser as below










HTML <q> tag:

     The HTML <q> tag characterizes or defines a short citation or quotation.

 

Example:

  •     type the following code in notepad

 <HTML>

<BODY>

<p><q> Skill Learning 7 </q></p>

</BODY>

</HTML>


  • save the file as qutation2.html
  • double click the file the page will be open in the browser







HTML <abbr> tag:

The HTML <abbr> tag defines an abbreviation or an acronym, like "HTML", "CSS".

creating abbreviations can give helpful information to browsers, translation systems and search-engines.

Example:

·       Type the following code in notepad

<HTML>

<BODY>

<p>The <abbr title="Skill Learning 7">SL7</abbr> was esteblished in 2020. </p>

</BODY>

</HTML>

·       Save as abbr.html.

·       Double click the file. The web page will appear in the browser.






HTML <address>:

     The HTML <address> tag defines the contact information for the owner of a document.

 

The contact information can be an email address, URL, phone, number, social, etc.

 

The text in the <address> element usually display in italic, and browsers will always add a line break before and after the <address> element.

Example:

·       Type the following code in notepad

<HTML>

<BODY>

<address>

Written by Amriha Gull.<br>

Visit us at:<br>

Example.com<br>

<br>

PAK

</address>

</BODY>

</HTML>

·       Save the file as address.html

·       Double click the file. The web page will appear



HTML <bdo> tag:

          The HTML <bdo> tag is used to override the current text direction

          BDO stands for Bi-Directional Override.

Example:

·       Type the following code in notepad

 

<HTML>

 

<BODY>

 

<bdo dir="rtl">My name is Amriha Gull</bdo>

 

</BODY>

 

</HTML>

·       Save the file as address.html

·       Double click the file. The web page will appear

 


HTML Comment Tags:

 Comments can be added to HTML source by using the following syntax:

<! -- Your comment here -->








Comments

Popular posts from this blog

Features of Operating System

 Features of Operating System All application like games, MS office, Firefox requires a reasonable climate to execute and play out their assignment. The working framework assists the client with associating with the framework without knowing to chip away at the coding languages. It isn't plausible for anybody to utilize any cell phones or PCs without conveying the working framework. It is compulsory to have at any rate one working framework to execute the projects and play out the assignment. So in the straightforward, working framework is characterized as the product that goes about as a line between PC equipment and end-client for simple collaboration to finish the assignment viably.  Highlights of Operating System  There is a wide scope of outstanding highlights in the working framework which is creating step by step. The development of OS is splendid in light of the fact that it is created in 1950 to deal with the capacity tapes and now it was functioning as an interf...

HTML Headings

  Headings: Heading are used to display different type of headings. “<Hn>” is the opening tag of headings and the closing tag is “</Hn>” where “n” is the size of the heading. Its value is from 1 to 6 . 1 represents the largest size and 6 represents the smallest size. HTML headings are titles or captions that you need to show on a site page . Example: compose and html code that show the heading on a page           <HTML>           <BODY> <h1> Heading      2 </h1> < h2 > Heading 2 < /h2 > < h3 > Heading 3 < /h3 > < h4 > Heading 4 < /h4 > < h5 > Heading 5 < /h5 > < h6 > Heading 6 < /h6 > </HTML>           </BODY> Save file with “heading.html” Double click the file. The page will open as follows...

HTML Paragraphs

  HTML Paragraphs: Paragraphs are used to add text in a document. Paragraphs are defined with <p> tag. The use of ending tag </p> is optional. You can't be certain how HTML will be shown.   Huge or little screens and resized windows will make various outcomes.   With HTML, you can't change the presentation by adding additional areas or additional lines in your HTML code.   The program will consequently, eliminate any additional areas and lines when the page is shown Example: ·        Open notepad and type the following code:                 <HTML>                 <BODY>                         <P> This is a Paragraph ...