Created
August 10, 2018 21:34
-
-
Save riyaadazad/27d3966544cdb017e552b37925b9566e to your computer and use it in GitHub Desktop.
Online store template provided by "w3schools.com" utilizing the W3.CSS stylesheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <title>W3.CSS</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> | |
| <body> | |
| <div class="w3-light-grey w3-container w3-padding-64 w3-center"> | |
| <h1 class="w3-jumbo">Online Store</h1> | |
| <p>Mission, Vission & Values</p> | |
| </div> | |
| <div class="w3-topnav w3-large w3-center w3-green"> | |
| <a href="#">Home</a> | |
| <a href="#">Products</a> | |
| <a href="#">Deals</a> | |
| <a href="#">Stores</a> | |
| <a href="#">Contact</a> | |
| <a href="#">Account</a> | |
| </div> | |
| <div class="w3-container w3-margin w3-center w3-margin-bottom"> | |
| <div class="w3-row-padding"> | |
| <div class="w3-third"> | |
| <div class="w3-card-2 w3-light-grey w3-padding"> | |
| <h3>BLACK FRIDAY DEAL</h3> | |
| <img src="http://placehold.it/150x80?text=IMAGE" class="img-responsive" style="width:100%" alt="Image"> | |
| <p>Buy 50 mobiles and get a gift card</p> | |
| </div> | |
| </div> | |
| <div class="w3-third"> | |
| <div class="w3-card-2 w3-light-grey w3-padding"> | |
| <h3>BLACK FRIDAY DEAL</h3> | |
| <img src="http://placehold.it/150x80?text=IMAGE" class="img-responsive" style="width:100%" alt="Image"> | |
| <p>Buy 50 mobiles and get a gift card</p> | |
| </div> | |
| </div> | |
| <div class="w3-third"> | |
| <div class="w3-card-2 w3-light-grey w3-padding"> | |
| <h3>BLACK FRIDAY DEAL</h3> | |
| <img src="http://placehold.it/150x80?text=IMAGE" class="img-responsive" style="width:100%" alt="Image"> | |
| <p>Buy 50 mobiles and get a gift card</p> | |
| </div> | |
| </div> | |
| </div> | |
| <br> | |
| <div class="w3-row-padding"> | |
| <div class="w3-third"> | |
| <div class="w3-card-2 w3-light-grey w3-padding"> | |
| <h3>BLACK FRIDAY DEAL</h3> | |
| <img src="http://placehold.it/150x80?text=IMAGE" class="img-responsive" style="width:100%" alt="Image"> | |
| <p>Buy 50 mobiles and get a gift card</p> | |
| </div> | |
| </div> | |
| <div class="w3-third"> | |
| <div class="w3-card-2 w3-light-grey w3-padding"> | |
| <h3>BLACK FRIDAY DEAL</h3> | |
| <img src="http://placehold.it/150x80?text=IMAGE" class="img-responsive" style="width:100%" alt="Image"> | |
| <p>Buy 50 mobiles and get a gift card</p> | |
| </div> | |
| </div> | |
| <div class="w3-third"> | |
| <div class="w3-card-2 w3-light-grey w3-padding"> | |
| <h3>BLACK FRIDAY DEAL</h3> | |
| <img src="http://placehold.it/150x80?text=IMAGE" class="img-responsive" style="width:100%" alt="Image"> | |
| <p>Buy 50 mobiles and get a gift card</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <footer class="w3-container w3-center w3-green"> | |
| <h5>Footer</h5> | |
| <p>Footer information goes here</p> | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment