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
49 changes: 39 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,53 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Culinary Chronicles </title>
<title>Culinary Chronicles</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<h1>Culinary Chronicles: Showcasing the Best Food in the World</h1>
<h3>A website by: PARTNER 1 & PARTNER 2</h3>
<h3>A website by: Dustin, Phong and Juan</h3>

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

<div><h1>Favorite Cuisines</h1>
<ul>
<li>Italian</li>
<li>Japanese</li>
<li>Indian</li>
<li>Thai</li>
<li>Mexican</li>
</ul>
</div>


<!-- Create a list of your favorite dishes with pictures -->




<!-- Create a list of recipes with links to sites that provide the recipe -->


<ul><h1>Favorite Dishes</h1>
<li>Spaghetti Carbonara</li>
<img src="spaghetti.jpg" alt="spaghetti" width="300px" height="200"/>
<li>Chicken</li>
<img src="https://th.bing.com/th/id/R.6cecdb352dc9f69fdf9592996a98f05e?rik=kmSHabEGTs%2bdLQ&pid=ImgRaw&r=0" alt="chicken" width="300px" height="200"/>
<li>Tikka Masala</li>
<img src="https://i.pinimg.com/736x/d2/be/a0/d2bea0a956e36a4221ab878b1ff74994.jpg" alt="tikka masala" width="300px" height="200"/>
<li>Pad Thai</li>
<img src="https://www.jocooks.com/wp-content/uploads/2019/07/pad-thai-1.jpg" alt="pad thai" width="300px" height="200"/>
</ul>
</div>

<!-- Create a list of recipes with links to sites that provide the recipe -->


<div>
<div><h1>Favorite Recipes</h1>
<ul class="recipes">
<li><a href="https://www.bing.com/images/search?view=detailv2&iss=sbi&FORM=recidp&sbisrc=ImgDropper&q=spaghetti+recipe&imgurl=https://bing.com/th?id=OSK.8efb61f66cd694ad794ff4e5d9555737&idpbck=1&sim=4&pageurl=17fa602ec20c6fde146e862a6adf60c7&idpp=recipe&ajaxhist=0&ajaxserp=0">Spaghetti Recipe</a></li>
<li><a href="https://www.bing.com/images/search?view=detailv2&iss=sbi&FORM=recidp&sbisrc=ImgDropper&q=chicken+recipe&imgurl=https://bing.com/th?id=OSK.8efb61f66cd694ad794ff4e5d9555737&idpbck=1&sim=4&pageurl=17fa602ec20c6fde146e862a6adf60c7&idpp=recipe&ajaxhist=0&ajaxserp=0">Chicken Recipe</a></li>
<li><a href="https://www.bing.com/images/search?view=detailv2&iss=sbi&FORM=recidp&sbisrc=ImgDropper&q=tikka+masala+recipe&imgurl=https://bing.com/th?id=OSK.8efb61f66cd694ad794ff4e5d9555737&idpbck=1&sim=4&pageurl=17fa602ec20c6fde146e862a6adf60c7&idpp=recipe&ajaxhist=0&ajaxserp=0">Tikka Masala Recipe</a></li>
<li><a href="https://www.bing.com/images/search?view=detailv2&iss=sbi&FORM=recidp&sbisrc=ImgDropper&q=pad+thai+recipe&imgurl=https://bing.com/th?id=OSK.8efb61f66cd694ad794ff4e5d9555737&idpbck=1&sim=4&pageurl=17fa602ec20c6fde146e862a6adf60c7&idpp=recipe&ajaxhist=0&ajaxserp=0">Pad Thai Recipe</a></li>
</ul>
</div>



Expand Down
Binary file added spaghetti.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
.tinos-regular {
font-family: "Tinos", serif;
font-weight: 400;
font-style: normal;
}

.tinos-bold {
font-family: "Tinos", serif;
font-weight: 700;
font-style: normal;
}

.tinos-regular-italic {
font-family: "Tinos", serif;
font-weight: 400;
font-style: italic;
}

.tinos-bold-italic {
font-family: "Tinos", serif;
font-weight: 700;
font-style: italic;
}

html, body {
font-family: "Tinos", serif;
font-weight: 500;
font-style: normal;
font-size: 20px;
background-color: lightblue;
}
.recipe {
font-family: "Tinos", serif;
font-weight: 500;
font-style: normal;
font-size: 20px;
background-color: lightblue;
}