Nintendo DSi Browser: Difference between revisions

Example Sites: Keep your f***ing spam off this page! The last thing we need is non-contributors posting their useless link sites. Make a real contribution or GTFO, please.
Using Both Screens: Restoring the HTML code back to a working version.
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>
     &lt;div id="topscreen"> < meta name="keywords" content="whats in your site" >
     &lt;div id="topscreen">Top Screen&lt;/div>
< link href="css/main.css" rel="stylesheet" type="text/css" / >
     &lt;div id="bottomscreen">Bottom Screen&lt;/div>
< meta name="viewport" content="width=240" >Top Screen&lt;/div>
     &lt;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&lt;/div>
   </body>
   </body>
  </html>
  </html>