
工作标题可以是书籍、歌曲、绘画、电影等的标题。
我们使用<cite>标签来标记HTML中的工作标题。<cite>标签表示引用,标签内的内容代表网页上指定事物的工作标题。
Following is the syntax for the <cite> tag.
<cite> Work title</cite>
以下是<cite>标签的示例程序。
立即学习“前端免费学习笔记(深入)”;
<!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>
Following is another example program for the <cite> 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>
以下是<cite>标签的另一个示例程序。
<!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>
以上就是如何在HTML中使用引用标签标记工作标题?的详细内容,更多请关注php中文网其它相关文章!
HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号