Threesuns

Email

Contact

All Semesters

Semesters

All Courses

Courses

WHERE DID THE DESIGN GO?

This website is not broken, the owner of it has decided to participate in Naked CSS Day 2025!

Naked CSS Day is a event that is held once per year (April 9th) to celebrate good & well planned design. The website will be back to its normal state tomorrow.

Scripting (Online)

CSYS2033

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>