Table of Contents
About WWF
Home Web Front-end Front-end Q&A What element is the reference tag in html5

What element is the reference tag in html5

Dec 16, 2021 pm 04:42 PM
html5

The quotation mark in html5 is the "blockquote" or "q" element. The blockquote element can define a block quote taken from another source. Browsers usually indent the blockquote element. The q element can define short quotes that do not require paragraph separation. Browsers often insert quotation marks around such quotes.

What element is the reference tag in html5

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

There are two kinds of quote tags in html5:

  • ##

    tag
  • Tag

Tag
Tag definition taken from another source block reference.

Browsers usually indent the
element.

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
</head>
<body>

<h1 id="About-nbsp-WWF">About WWF</h1>
<p>Here is a quote from WWF&#39;s website:</p>

<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world’s leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.
</blockquote>

</body>
</html>
Copy after login

What element is the reference tag in html5

Tags

Tags define short quotes that do not require paragraph separation.

Browsers often insert quotation marks around such references.

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
</head>
<body>

<p>WWF&#39;s goal is to: 
<q>Build a future where people live in harmony with nature.</q>
We hope they succeed.</p>

</body>
</html>
Copy after login

What element is the reference tag in html5

Recommended tutorial: "

html video tutorial"

The above is the detailed content of What element is the reference tag in html5. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

Nested Table in HTML

Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

Table Border in HTML

HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

HTML margin-left

HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

HTML Table Layout

Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

Moving Text in HTML

HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

HTML Ordered List

HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

HTML onclick Button

HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

HTML Input Placeholder

See all articles