Custom grid in email - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Grid

Description

Custom grid in email

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/foundation/6.2.0/foundation.min.css"> 
 </head> <!--  ww w  .  ja va2  s .c o m-->
 <body translate="no"> 
  <table class="row"> 
   <tbody> 
    <tr> 
     <th class="large-6 first columns"> <a href="#"> <img src="https://www.java2s.com/style/demo/Opera.png"> </a> </th> 
     <th class="large-6 last columns"> 
      <table class="row"> 
       <tbody> 
        <tr> 
         <th class="large-12 first last columns"> <a href="#"> <img src="https://www.java2s.com/style/demo/Opera.png"> </a> </th> 
        </tr> 
       </tbody> 
      </table> 
      <table class="row"> 
       <tbody> 
        <tr> 
         <th class="large-6 first columns"> <a href="#"> <img src="https://www.java2s.com/style/demo/Opera.png"> </a> </th> 
         <th class="large-6 first columns"> <a href="#"> <img src="https://www.java2s.com/style/demo/Safari.png"> </a> </th> 
        </tr> 
       </tbody> 
      </table> 
      <table class="row"> 
       <tbody> 
        <tr> 
         <th class="large-6 first columns"> <a href="#"> <img src="https://www.java2s.com/style/demo/InternetExplorer.png"> </a> </th> 
         <th class="large-6 first columns"> <a href="#"> <img src="https://www.java2s.com/style/demo/Safari.png"> </a> </th> 
        </tr> 
       </tbody> 
      </table> </th> 
    </tr> 
   </tbody> 
  </table>  
 </body>
</html>

Related Tutorials