Responsive web page - splash page - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Responsive Layout

Description

Responsive web page - splash page

Demo Code

ResultView the demo in separate window

<!--<!--from  ww  w.j  a  va 2 s  .c om-->
Created using JS Bin
http://jsbin.com
Released under the MIT license: http://jsbin.mit-license.org
-->
<html>
 <head> 
  <title>Lorem ipsum </title> 
  <!--<meta name="viewport" content="width=device-width, initial-scale=1">--> 
 </head> 
 <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> 
  <!-- Save for Web Slices (newbeebosite.psd) --> 
  <table id="Table_01" border="0" cellpadding="0" cellspacing="0"> 
   <tbody> 
    <tr> 
     <td colspan="7"> <img src="https://www.java2s.com/style/demo/Opera.png" width="80%" height="21" alt=""> </td> 
     <td> <img src="https://www.java2s.com/style/demo/Safari.png" width="80%" height="21" alt=""> </td> 
    </tr> 
    <tr> 
     <td colspan="5" rowspan="2"> <img src="https://www.java2s.com/style/demo/Firefox.png" width="80%" height="46" alt=""> </td> 
     <td> <img src="https://www.java2s.com/style/demo/InternetExplorer.png" width="80%" height="45" alt=""> </td> 
     <td> <img src="https://www.java2s.com/style/demo/InternetExplorer.png" width="80%" height="45" alt=""> </td> 
     <td> <img src="https://www.java2s.com/style/demo/Opera.png" width="80%" height="45" alt=""> </td> 
    </tr> 
   </tbody> 
  </table> 
  <!-- End Save for Web Slices -->  
 </body>
</html>

Related Tutorials