Advertisement
Guest User

Untitled

a guest
Dec 9th, 2014
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.02 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title><?php echo "Shirts 4 Mike"; ?></title>
  4.     <link rel="stylesheet" href="css/style.css" type="text/css" />
  5.     <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Oswald:400,700" type="text/css">
  6.     <link rel="shortcut icon" href="favicon.ico">
  7.     <style type="text/css">
  8.       <?php $css = file_get_contents('css/style.css'); echo $css; ?>
  9.     </style>
  10. </head>
  11. <body>
  12.  
  13.     <div class="header">
  14.  
  15.         <div class="wrapper">
  16.  
  17.             <h1 class="branding-title"><a href="./">Shirts 4 Mike</a></h1>
  18.  
  19.             <ul class="nav">
  20.                 <li class="shirts"><a href="#">Shirts</a></li>
  21.                 <li class="contact"><a href="#">Contact</a></li>
  22.                 <li class="cart"><a href="#">Shopping Cart</a></li>
  23.             </ul>
  24.  
  25.         </div>
  26.  
  27.     </div>
  28.  
  29.     <div id="content">
  30.  
  31.         <div class="section banner">
  32.  
  33.             <div class="wrapper">
  34.  
  35.                 <img class="hero" src="img/mike-the-frog.png" alt="Mike the Frog says:">
  36.                 <div class="button">
  37.                     <a href="#">
  38.                         <h2>Hey, I&rsquo;m Mike!</h2>
  39.                         <p>Check Out My Shirts</p>
  40.                     </a>
  41.                 </div>
  42.             </div>
  43.  
  44.         </div>
  45.  
  46.         <div class="section shirts latest">
  47.  
  48.             <div class="wrapper">
  49.  
  50.                 <h2>Mike&rsquo;s Latest Shirts</h2>
  51.  
  52.                 <ul class="products">
  53.                     <li><a href="#">
  54.                             <img src="img/shirts/shirt-108.jpg">
  55.                             <p>View Details</p>
  56.                         </a>
  57.                     </li><li>
  58.                         <a href="#">
  59.                             <img src="img/shirts/shirt-107.jpg">
  60.                             <p>View Details</p>
  61.                         </a>
  62.                     </li><li>
  63.                         <a href="#">
  64.                             <img src="img/shirts/shirt-106.jpg">
  65.                             <p>View Details</p>
  66.                         </a>
  67.                     </li><li>
  68.                         <a href="#">
  69.                             <img src="img/shirts/shirt-105.jpg">
  70.                             <p>View Details</p>
  71.                         </a>
  72.                     </li>                              
  73.                 </ul>
  74.  
  75.             </div>
  76.  
  77.         </div>
  78.  
  79.     </div>
  80.  
  81.     <div class="footer">
  82.  
  83.         <div class="wrapper">
  84.  
  85.             <ul>       
  86.                 <li><a href="http://twitter.com/treehouse">Twitter</a></li>
  87.                 <li><a href="https://www.facebook.com/TeamTreehouse">Facebook</a></li>
  88.             </ul>
  89.  
  90.             <p>&copy;<?php echo date('Y');?> Shirts 4 Mike</p>
  91.  
  92.         </div>
  93.    
  94.     </div>
  95.  
  96. </body>
  97. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement