Coding: XHTML: Head Tags
Web pages are divided into two sections: head and body.
Next, you'll enter head tags including the start tag <head> and the end tag </head>.
Background information about the page is included in the head area. This includes the title and meta tags.
Your Document
Your document should now look something like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
</head>
</html>
Learn More
head tag from w3schools