Class Details

Class Number 14024

Tues., Thurs. 4:00-6:45

Jerome Richfield 319

Contact Details

Office: 803 Sierra Tower
Telephone: 677-0901
E-mail: scott.kleinman@csun.edu

Good Practices

Insert DTD and Namespace before the <html> element.

Insert <meta> tag with character set information inside the <head> element.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Page Title</title>
</head>
<body>
</body>
</html>

Return to Top | Return to Table of Contents