Wie markiere ich den Arbeitstitel mithilfe des Anführungszeichen-Tags in HTML?

WBOY
Freigeben: 2023-09-07 15:17:02
nach vorne
640 Leute haben es durchsucht

Wie markiere ich den Arbeitstitel mithilfe des Anführungszeichen-Tags in HTML?

工作标题可以是书籍、歌曲、绘画、电影等的标题。

我们使用标签来标记HTML中的工作标题。标签表示引用,标签内的内容代表网页上指定事物的工作标题。

语法

Following is the syntax for the tag.

<cite> Work title</cite>
Nach dem Login kopieren

Example

以下是标签的示例程序。

<!DOCTYPE html>
<html>
<head>
   <title>HTML cite tag</title>
</head>
<body>
   <h1>Heading</h1>
   <p>
      Learn Java from <cite>Java The Complete Reference</cite> by Herbert Schildt.
   </p>
</body>
</html>
Nach dem Login kopieren

Example

Following is another example program for the tag.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
   <p>DLF stands for <cite>Delhi Land and Finance</cite></p>
   <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p>
</body>
</html>
Nach dem Login kopieren

Example

以下是标签的另一个示例程序。

<!DOCTYPE html>
<html>
<head>
   <title>HTML blockquote tag</title>
   <style>
      blockquote {
         margin-left: 0;
      }
   </style>
</head>
<body>
   <h1>Drupal official website</h1>
   <p>Here is a quotation from Drupal’s official website</p>
   <blockquote cite="http://drupal.org">The Drupal project is open source software.
   Anyone can download, use, work on, and share it with others. It's built on  principles like collaboration, globalism, and innovation.</blockquote>
</body>
</html>
Nach dem Login kopieren

Das obige ist der detaillierte Inhalt vonWie markiere ich den Arbeitstitel mithilfe des Anführungszeichen-Tags in HTML?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:tutorialspoint.com
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!