Last active
September 1, 2017 21:05
-
-
Save perryraskin/952cdba7d7ee88516b3a1ab1d0314ed5 to your computer and use it in GitHub Desktop.
cookie css
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> | |
<head> | |
<title>Cookie Store</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> | |
<link href="css/styles.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<div class="container-fluid"> | |
<div class="row" id="banner"> | |
<div class="col-sm-12"> | |
<h1>Cookie Store</h1> | |
<p>Buy our awesome cookies. All proceeds go to charity!</p> | |
</div> | |
</div> | |
</div> | |
<h2>The Cookies</h2> | |
<div class="row"> | |
<div class="col-xs-6 col-md-2 col-lg-1"> | |
</div> | |
<div> | |
<h3>Thin Mint Cookies</h3> | |
<p>Tasty mint chocolate cookies</p> | |
<img src="img/mint.png"> | |
</div> | |
<div> | |
<h3>Peanut Butter Cookies</h3> | |
<p>Yummy peanut buttery goodness!</p> | |
<img src="img/peanut.png"> | |
</div> | |
<div> | |
<h3>Short Bread Cookies</h3> | |
<p>Santa's favorite classic.</p> | |
<img src="img/shortbread.png"> | |
</div> | |
<div> | |
<h3>Smore's Cookies</h3> | |
<p>Camp fire favorite!</p> | |
<img src="img/smores.png"> | |
</div> | |
</div> | |
<div class="container"> | |
<h2>About us</h2> | |
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod | |
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, | |
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo | |
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse | |
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non | |
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div> | |
</div> | |
<h2>Contact us</h2> | |
<div> | |
100 Broadway Avenue,<br> | |
New York, NY 10001 <br> | |
(212) 555-1234 | |
</div> | |
</div> | |
</body> | |
</html> |
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
/* CSS Style Sheet */ | |
body{ | |
text-align: center; | |
} | |
#banner { | |
background: url('../img/milkbg.jpg') repeat-x; | |
height: 400px; | |
text-align: center; | |
} | |
h1 { | |
color: white; | |
padding-top: 100px; | |
} | |
p { | |
color: white; | |
} | |
h2 { | |
} | |
h3 { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment