Skip to content
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
Binary file added images/5711F470-9971-4CA9-B64E-E5091F283342.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Shrimp_Tacos.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Shrimp_Tikka_Massala.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/cajun_food.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/chinese_food.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/gumbo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/img_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/indian_food.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/pexels-anna-tarazevich-6937455.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/pexels-pixabay-357756.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 45 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,53 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Culinary Chronicles </title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Culinary Chronicles: Showcasing the Best Food in the World</h1>
<h3>A website by: PARTNER 1 & PARTNER 2</h3>
<header>
<h1>Culinary Chronicles: Showcasing the Best Food in the World</h1>
<h3>A website by: Curtis & Malik</h3>
</header>

<main>
<ul>
<div class="curtisDishes">
<li>Indian</li>
<img src="images/indian_food.png" alt="Indian Food"/>
<li>Mexican</li>
<img src="images/5711F470-9971-4CA9-B64E-E5091F283342.png" alt="Mexican Food"/>
</div>
<div class="malikDishes">
<li>Cajun</li>
<img src="images/cajun_food.jpg" alt="Cajun Food"/>
<li>Chinese</li>
<img src="images/chinese_food.jpg" alt="Chinese Food"/>
</div>


</ul>
<ol>
<li>Shrimp Tikka Massala</li>
<a href="https://www.marthastewart.com/317190/shrimp-tikka-masala" target="_blank">
<img src="images/Shrimp_Tikka_Massala.png" alt="Indian Shrimp Tikka Massala"/>
</a>
<li>Shrimp Tacos</li>
<a href="https://www.gimmesomeoven.com/shrimp-tacos-recipe/" target="_blank">
<img src="images/Shrimp_Tacos.png" alt="Mexican Dish Shrimp Tacos"/>
</a>
<li>Gumbo</li>
<a href="https://www.allrecipes.com/recipe/12940/seafood-gumbo/" target="_blank">
<img src="images/gumbo.png" alt="Cajun Food Gumbo"/>
</a>
<li>Fried Rice</li>
<a href="https://thewoksoflife.com/shrimp-fried-rice/" target="_blank">
<img src="images/pexels-anna-tarazevich-6937455.jpg" alt="Chinese Dish Fried Rice">
</a>

</ol>

</main>


<!-- Create a list of your favorite cuisines and pictures -->

Expand Down
65 changes: 65 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
body{
background-color:#FFD580;
}
img{
width: 35%;
height: 300px;
object-fit: cover;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}
header{
text-align: center;
}
.curtisDishes{
width: 90%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
background-color: orange;
margin-right: auto;
margin-left: auto;
font-family: sans-serif;
font-size: 20px;
text-align: center;
opacity: 80%;

}
.malikDishes {
margin-top: 3em;
width: 90%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
background-color: orange;
margin-right: auto;
margin-left: auto;
font-family: sans-serif;
font-size: 20px;
opacity: 80%;
}
ul li{
text-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
list-style: none;
margin-left: 2em;
}
ol {
border: 2px solid lightgrey;
border-radius: 5px;
color: white;
background-color: lightgrey;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 60%;
margin-left: auto;
margin-right: auto;
text-decoration-line: underline;
}
ol img{
width: 100%;
height: 50vh;
}