Line 143:
Line 143:
Generally the easiest way to accomplish the correct layout is to create HTML elements that "contain" the top and bottom screens. Here's an example:
Generally the easiest way to accomplish the correct layout is to create HTML elements that "contain" the top and bottom screens. Here's an example:
−
<html>
+
<html>
<head>
<head>
<meta name="viewport" content="width=240">
<meta name="viewport" content="width=240">
Line 152:
Line 152:
</head>
</head>
<body>
<body>
−
<div id="topscreen"> < meta name="keywords" content="whats in your site" >
+
<div id="topscreen">Top Screen</div>
−
< link href="css/main.css" rel="stylesheet" type="text/css" / >
+
<div id="bottomscreen">Bottom Screen</div>
−
< meta name="viewport" content="width=240" >Top Screen</div>
−
<div id="bottomscreen"> < meta name="keywords" content="whats in your site" >
−
< link href="css/main.css" rel="stylesheet" type="text/css" / >
−
< meta name="viewport" content="width=240" >Bottom Screen</div>
</body>
</body>
</html>
</html>