blockquote tag
q tag
pre tag
TAG: cite
<cite> ... </cite>
The
cite
tag takes the selected block of text (a citation) and displays it in italics. Unlike the
blockquote
tag, the citation is not preceded or followed by paragraph breaks. So the citation remain inline. You may need to use other HTML tags and style sheets to effect the textual display and appearance that you desire.
It is recommended that you use the
blockquote
tag for long citations and the
cite
tag for short citations.
The separate closing tag is mandatory.
Attributes and Events
class
dir
id
lang
onclick
ondblclick
onkeydown
onkeypress
onkeyup
onmousedown
onmousemove
onmouseout
onmouseover
onmouseup
style
title
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="eng">
<head>
<title>DevGuru XHTML cite Tag Example</title>
</head>
<body>
As for what was lost, I simply refer you to the photography by Eliot Porter in
<
cite
> The Place No One Knew: Glen Canyon on the Colorado River.<
/cite
>
</body>
</html>
Output:
As for what was lost, I simply refer you to the photography by Eliot Porter in
The Place No One Knew: Glen Canyon on the Colorado River.
Copyright 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information