Course Content
HTML Forms
HTML forms are an essential part of web development and provide a way for users to input and submit data to a server. Forms allow users to enter data such as text, numbers, checkboxes, radio buttons, and more. When a user submits a form, the data is typically sent to a server for further processing.
0/6
HTML Graphics
HTML provides various ways to incorporate graphics into web pages.
0/2
HTML Media
HTML provides built-in support for embedding and displaying various types of media content on web pages.
0/5
HTML APIs
HTML APIs, also known as browser APIs or web APIs, are a set of interfaces and methods provided by web browsers to interact with and manipulate web content, access device features, and perform various tasks. These APIs are implemented in JavaScript and are accessible to web developers when creating web applications. Here are some commonly used HTML APIs:
0/5
HTML Examples
Creating a Simple Web Page, Adding Links and Images and more
0/4
HTML5 for Free | HTML5 – Unleashing the Potential of Web Development
About Lesson

HTML provides several elements that are specifically designed for representing quotations and citations within web pages. Here are the commonly used quotation and citation elements in HTML:

  1. <blockquote>: Represents a block-level quotation from another source. By default, it indents the content and may render with quotation marks.
<blockquote>
  <p>This is a blockquote.</p>
  <footer>Quoted from <cite>Source</cite></footer>
</blockquote>
  1. <q>: Represents a short inline quotation. By default, it renders the quotation within quotation marks.
<p>She said, <q>This is a short quotation.</q></p>
  1. <cite>: Specifies the title or source of a work, such as a book, article, or publication.
<p>According to <cite>The New York Times</cite>, the event was a success.</p>
  1. <abbr>: Represents an abbreviated form of a longer word or phrase. The title attribute provides the full expansion or explanation of the abbreviation.
<p>The <abbr title="World Health Organization">WHO</abbr> is a specialized agency of the United Nations.</p>
  1. <dfn>: Represents the defining instance of a term within a document. It is commonly used in glossaries or definitions.
<p>The <dfn>HTML</dfn> stands for HyperText Markup Language.</p>
  1. <cite> and <bdo>: Together, these elements can be used to represent citations in different languages or text directions. <bdo> is used to override the text directionality.
<cite><bdo dir="rtl">قالوا أنها جميلة</bdo></cite>

These elements provide semantic meaning to quotations and citations, aiding in proper interpretation by assistive technologies and search engines. By using these elements appropriately, you can improve the accessibility, structure, and clarity of your content.

Join the conversation