-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (54 loc) · 2.61 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<link rel = "stylesheet" type = "text/css" href="style.css">
<link rel = "stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<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>Recipes</title>
</head>
<body>
<div class="image-container">
<h1 id="firstHeading">Odin Recipes</h1>
<img src="img/OdinRecipes.png" alt="odin image" id="OdinRecipesImg">
<div class="rectangle"></div>
</div>
<h2 id="recipe-title"> Recipes </h2>
<div class="recipe-img">
<img src="img/Chickenalpastor.jpeg" alt="Chicken al pastor image" id="image-one">
<img src="img/ChickenTeriyaki.jpeg" alt="Chicken teriyaki image" id="image-two">
<img src="img/ButterChicken.png" alt="Butter chicken image" id="image-three">
<img src="img/Biriyani.jpg" alt="Biryani image" id="image-four">
<img src="img/Garliczucchini.jpeg" alt="Garlic Zucchini image" id="image-five">
</div>
<div class="recipe-link">
<a href ="recipes/Chicken_Al_Pastor.html" id="link-one"> Chicken Al Pastor</a>
<a href = "recipes/Grilled_Chicken_Teriyaki_Skewers_with_Miso_Ranch.html" id="link-two"> Chicken Teriyaki </a>
<a href="recipes/Butter_Chicken.html" id ="link-three">Butter Chicken</a>
<a href="recipes/Biriyani.html" id="link-four">Biryani</a>
<a href="recipes/Garlicky_Shrimp_Zucchini_Boats.html" id="link-five"> Shrimp Zucchini </a>
</div>
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.2.0/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/10.2.0/firebase-analytics.js";
// TODO: Add SDKs for Firebase products that you want to use
// https://firebase.google.com/docs/web/setup#available-libraries
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyB7vfqgtfDbmX9TE6TMksM2jwk9ZWSPdz0",
authDomain: "reason-to-eat.firebaseapp.com",
projectId: "reason-to-eat",
storageBucket: "reason-to-eat.appspot.com",
messagingSenderId: "889695868068",
appId: "1:889695868068:web:24ae8701b9eefcfab50231",
measurementId: "G-31FFPYSJT9"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
</body>
</html>