Continue

 Acronym Element

The <acronym> element allows you to indicate that the text between <acronym> and</acronym> tags is an acronym. At present, the major browsers do not change the appearance of the content of the<acronym> element.

Example

<!DOCTYPE html>

<html>

<head>

<title>Acronym Example</title>

</head>

<body>

<p>This chapter covers marking up text in <acronym>XHTML</acronym>.</p>

</body>

</html>


This will produce the following result:

This chapter covers marking up text in XHTML.

Comments

Popular Posts