Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Frames
Goldilocks thought it would be a really good idea to help herself to a bowl of porridge but then three large carnivorous mammals showed up and threw her out of a window. Frames are bowls of porridge that belong to bears. They might look nice, but it would be quite perilous to go anywhere near them.
Most web sites do not use frames and in general web users are used to a single document as a page.
But if, for some reason, you want to prevent users adding a specific page to their bookmarks or if you want to prevent them recommending a specific page via email or instant messaging or if you want to add a whole other level of complexity to users with disabilities using screen readers who will need to navigate between frames on top of navigating through a page or if you want to confuse the hell out of search engines, go ahead, use frames.
In general, frames do nothing but add complexity and subtract usability.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "[URL unfurl="true"]http://www.w3.org/TR/html4/strict.dtd">[/URL]
<html>
<head>
<title>new document</title>
<style type="text/css">
#container {
border: 1px solid #ccc;
width: 600px;
margin: 0 auto;
}
#header {
height: 60px;
background-color: #0000cc;
color: #fff;
font-size: 24px;
}
#nav {
width: 100px;
float: left;
background-color: #333;
color: #ccc;
}
#nav ul {
list-style: none;
margin-left: 10px;
padding: 0;
}
#body {
overflow: scroll;
height: 100px;
}
</style>
</head>
<body>
<div id="container">
<div id="header">Here is the Header!</div>
<div id="nav">
<ul>
<li>Nav Item 1</li>
<li>Nav Item 2</li>
<li>Nav Item 3</li>
<li>Nav Item 4</li>
</ul>
</div>
<div id="body">
Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content Main content
</div>
</div>
</body>
</html>