HTML and CSS Reference
In-Depth Information
Code View:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>XOM 1.1 API</title></head>
<body>
<div>
<div style="width: 20%;">
<div style="height: 30%; border: solid; overflow: scroll;"
src="overview-frame.html" id="packageListFrame"
title="All Packages" />
<div style="height: 70%; border: solid; overflow: scroll;"
src="allclasses-frame.html" id="packageFrame"
title="All classes and interfaces
(except non-static nested types)" />
</div>
<div style="width: 80%; border: solid; overflow: scroll"
src="overview-summary.html" id="classFrame"
title="Package, class and interface descriptions" />
</div>
</body>
</html>
The next step is to copy the text from the body elements in the framed documents into the new source
document. This text can, of course, be rather long, so in Listing 5.11 , I've just filled in some dummy text. This is
now a valid XHTML strict document.
Listing 5.11. The Finished Frame-Free Document
Code View:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>XOM 1.1 API</title></head>
<body>
<div id="outer">
<div id="leftFrame" style="width: 20%;">
<div style="height: 30%"
id="packageListFrame" title="All Packages" >
Package list goes here
</div>
<div style="height: 70%"
id="packageFrame" title="All classes and interfaces
(except non-static nested types)" >
Class list goes here
</div>
</div>
<div style="width: 80%;"
id="classFrame" title="Package, class and interface
descriptions" >
 
Search WWH ::




Custom Search