Threesuns

Email

Contact

All Semesters

Semesters

All Courses

Courses

HTML and CSS

CSYS1013

3 credits

Create a Valid XHTML Transitional Page

How To

Correct Transitional XHTML Page Structure

Step 1

To create a valid XHTML Transitional page start off with this basic document template:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

    <title></title>
</head>

<body>

</body>
</html>