The external link package has been configured specifically to be used in conjunction with a frameset and for linking into the online appointment system from another web site.
Framesets are acceptable W3C HTML components and are used to incorporate two or more independent HTML documents into the same browser window.
Follow this link to preview and download a couple of different frameset examples.
Here is the HTML code that explains the frameset and how it works. It will be the other two files, the upper frame and main frame, which will contain your viewable page content.
- the frameset
- the upper frame
- the main frame
The Frameset :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Online Appointment Book</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
body {
margin: 0px;
padding: 0px;
}
-->
</style>
<frameset rows="90,*" cols="*" border="0">
<frame src="upperframe.html" name="upperFrame" frameborder="0" scrolling="no">
<frame src="mainframe.html" name="mainFrame" frameborder="0">
<noframes>
<body>
OPTIONAL HTML CONTENT FOR OLD BROWSERS (not seen)
</body>
</noframes>
</frameset>
</html>
|