Home  >  Article  >  Web Front-end  >  What element is the reference tag in html5

What element is the reference tag in html5

青灯夜游
青灯夜游Original
2021-12-16 16:42:312122browse

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>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>

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>

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:
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