
工作标题可以是书籍、歌曲、绘画、电影等的标题。
我们使用标签来标记HTML中的工作标题。标签表示引用,标签内的内容代表网页上指定事物的工作标题。
语法
Following is the syntax for the tag.
<cite> Work title</cite>
Example
以下是标签的示例程序。
立即学习“前端免费学习笔记(深入)”;
用 php + mysql 驱动的在线商城系统,我们的目标为中国的中小企业及个人提供最简洁,最安全,最高效的在线商城解决方案,使用了自建的会员积分折扣功能,不同的会员组有不同的折扣,让您的商店吸引更多的后续客户。 系统自动加分处理功能,自动处理会员等级,免去人工处理的工作量,让您的商店运作起来更方便省事 采用了自建的直接模板技术,免去了模板解析时间,提高了代码利用效率 独立开发的购物车系统,使用最
<!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>
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>
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>










