Go to GoReading for breaking news, videos, and the latest top stories in world news, business, politics, health and pop culture.

409xhtml

106 3
< Continued from page 1

When writing an XHTML Web page you need to enter some things into the beginning of the page. This is how the browser will know that you are using XHTML and not just HTML. Here is a template you can use to begin your XHTML Web page:

<?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">
<head>
<title>TITLE OF PAGE GOES HERE</title>
</head>
<body>
CONTENT OF PAGE GOES HERE. THIS IS WHERE YOU PUT YOUR XHTML CODE AND THE TEXT AND INFORMATION FOR YOUR WEB PAGE.
</body>
</html>


9 Rules for Well Formed XHTML Web Pages
Source...

Leave A Reply

Your email address will not be published.