Create panel with header and footer - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer

Description

Create panel with header and footer

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--from w w w .  j  a  v a 2s.  co m-->
 <body style="margin: 0; padding: 0; background-color: #f5f5f5; font-family: Verdana, Geneva, sans-serif;"> 
  <table border="0" cellpadding="0" cellspacing="0" width="100%" style="padding:40px 0 0 0;"> 
   <tbody> 
    <tr> 
     <td> 
      <table align="center" border="0" cellpadding="0" cellspacing="0" width="600" bgcolor="#ffffff" style="border:1px solid #CCCCCC;border-radius:5px;-webkit-border-radius:5px;-moz-border-radius:5px;"> 
       <tbody> 
        <tr> 
         <td align="center" style="border-bottom:1px solid #CCCCCC;"> <a href="#"> <img src="https://www.java2s.com/style/demo/Google-Chrome.png" alt="Welcome" style="display: block; width:100%; height:auto;"> </a> </td> 
        </tr> 
        <tr> 
         <td style="padding: 30px 20px 30px 20px;"> 
          <table border="0" cellpadding="0" cellspacing="0" width="100%" style="font-size:16px;color:#666666;"> 
           <tbody> 
            <tr> 
             <td> <b>Lorem ipsum </b> </td> 
            </tr> 
            <tr> 
             <td style="padding: 20px 0 20px 0;">Lorem ipsum dolor sit amet,</td> 
            </tr> 
            <tr> 
             <td>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ullamcorper molestie lacus sed fermentum. Aliquam erat volutpat. Vestibulum tortor neque, ornare vitae tempor hendrerit, luctus at neque. Phasellus sed quam ph</td> 
            </tr> 
            <tr> 
             <td style="color:#444444;padding: 20px 0 20px 0;"> <b>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</b> </td> 
            </tr> 
            <tr> 
             <td align="center"> <a href="" style="width:240px; background: #cf142b; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; color: #ffffff; font-weight: bold; text-decoration: none; display: block; padding:15px 10px 15px 10px;">Lorem ipsum dolor </a> </td> 
            </tr> 
           </tbody> 
          </table> </td> 
        </tr> 
        <tr> 
         <td>Lorem ipsum do</td> 
        </tr> 
        <tr bgcolor="#0B5EA8"> 
         <td>Lorem </td> 
        </tr> 
       </tbody> 
      </table> </td> 
    </tr> 
   </tbody> 
  </table>  
 </body>
</html>

Related Tutorials