Home  >  Article  >  Web Front-end  >  How to use html cite tag

How to use html cite tag

藏色散人
藏色散人Original
2019-05-26 09:33:424620browse

html The cite tag usually indicates that the text it contains refers to a reference, such as the title of a magazine or some books, songs, movies, TV shows, paintings, sculptures, etc.

How to use html cite tag

#html How to use the cite tag?

Function:

usually indicates that the text it contains refers to a reference, such as the title of a magazine or some books, songs, movies , TV shows, paintings, sculptures and more.

Instructions:

Use the tag to separate references to other documents, especially those in traditional media, such as books, magazines, Journals, etc. If there is an online version of the referenced document, you should also include the reference in an tag to provide a hyperlink to the online version. The

tag also has a hidden function: it allows you or others to automatically extract a bibliography from the document.

We can easily imagine a browser that can automatically organize citation tables and display them as footnotes or independent documents. The semantics of the tag go far beyond changing the appearance of the text it contains; it enables the browser to express the document's content to the user in a variety of practical ways.

Note:

Quoted text will appear in italics. All browsers support the tag.

html Example of using cite tag

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<cite>三国演义</cite>是中国的四大名著之一。<br>
这个标签里面的字体是斜体
</body>
</html>

Effect:

How to use html cite tag

The above is the detailed content of How to use html cite tag. 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