<cite>
marks a citation by causing text between
its opening and closing tags to be rendered
in italics.
<cite> |
Yes | Yes | Yes | Yes | Yes |
The <cite> tag supports the Global Attributes in HTML.
The <cite> tag supports the Event Attributes in HTML.
cite { font-style: italic; }
The following code uses <cite>
tag to mark a URL.
<!DOCTYPE HTML>
<html>
<head>
<title>Example</title>
</head>
<body>
My favorite book is <cite>google.com</cite> by Google.
</body>
</html>