Skip to content
This repository was archived by the owner on Sep 18, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -1 +1,46 @@

img{
border-radius: 100%;
padding-bottom: 20px;
}
}

body{
background: url("...img/milkbg.jpg") no-repeat center #00f;
display: block;
}

#banner{
height: 550px;
background: url("...img/milkbg.jpg") no-repeat center #00f;
background-size: cover;
display: block;

}

#box{
margin-left: 400px;
margin-right: auto;
margin-top: 100px;
width: 650px;
height: 400px;
background-color: black;
opacity: .6;
color: white;
}

#about{
height: 400px;
background-color: lightgray;

}

.cookie{
padding-top: 100px;
padding-left: 20px;
float:left;
}

#contact-us{
background-color: lightblue;
}
85 changes: 68 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,46 +2,97 @@
<html>
<head>
<title>Cookie Store</title>

<link rel="stylesheet" href="css/styles.css">

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>

<body>

<div class = "container-fluid">

<h1>Cookie Store</h1>
<div class = "row" id = "banner" style = "background-image:url('img/milkbg.jpg')">
<div class = "col-md-12">
<div id = "box">
<div id = "stuff"><h1 class = "text-center">Cookie Store</h1>

<p>Buy our awesome cookies. All proceeds go to charity!</p>

<h2>The Cookies</h2>
<p class = "text-center">Buy our awesome cookies. All proceeds go to charity!</p>
</div>
</div>

<h3>Thin Mint Cookies</h3>
<p>Tasty mint chocolate cookies</p>
</div>
</div>
</div>


<h2 class = "text-center">The Cookies</h2>

<div class = "row">
<div class = "col-md-3">
<h3 class = "text-center">Thin Mint Cookies</h3>
<p class = "text-center">Tasty mint chocolate cookies</p>
<img src="img/mint.png">
</div>

<h3>Peanut Butter Cookies</h3>
<p>Yummy peanut buttery goodness!</p>
<div class = "col-md-3">
<h3 class = "text-center">Peanut Butter Cookies</h3>
<p class = "text-center">Yummy peanut buttery goodness!</p>
<img src="img/peanut.png">
</div>

<h3>Short Bread Cookies</h3>
<p>Santa's favorite classic.</p>

<div class = "col-md-3">
<h3 class = "text-center">Short Bread Cookies</h3>
<p class = "text-center">Santa's favorite classic.</p>
<img src="img/shortbread.png">
</div>

<h3>Smore's Cookies</h3>
<p>Camp fire favorite!</p>

<div class = "col-md-3">
<h3 class = "text-center">Smore's Cookies</h3>
<p class = "text-center">Camp fire favorite!</p>
<img src="img/smores.png">
</div>

</div>

<div class = "row" id=about>
<div class = "col-md-12">

<div class = "img cookie"> <img src = "img/cmonster.png"></div>

<h2>About us</h2>
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
<h2 class = "text-center">About us</h2>
<p class = "text-center">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>
</p>

<h2>Contact us</h2>
<div>
100 Broadway Avenue,<br>
</div>

<div class = "row" id="contact-us">
<div class = "col-md-12">
<h2 class = "text-center">Contact Us</h2>
<p class = "text-center"> 100 Broadway Avenue,<br>
New York, NY 10001 <br>
(212) 555-1234
(212) 555-1234 </p>
</div>
</div>





</body>
</html>