XHTML is a strict version of HTML that works in many types of browsers and is therefore accessible. In 2000, XHTML replaced HTML 4 as the recommended standard for creating Web pages.
All CSU Libraries Web pages should be converted to XHTML.
DOCTYPE declaration that indicates the document is XHTML.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> html, head, body and title elements.<h1>heading</h1><p>paragraph</p> not <h1>heading<p>paragraph</h1></p>/>.
<meta />, <img /> or <br /><p>paragraph</p> , <li>list item</li> <p id="P1"> not <P ID="P1">id="P1"script and style elements have a type attribute.
<style type="text/css">alt attribute.
<img src="csulogo.jpg" width="120" height="80" alt="CSU Logo" />Using Macromedia Dreamweaver,
--#include in the Find box, type -- include in the Replace box, and click Replace All. -- include in the Find box, type --#include in the Replace box, and click Replace All. Using Microsoft FrontPage,
<html> tag at the top of the document.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
xmlns and lang attributes to the html tag. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">