-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (78 loc) · 3.63 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
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Amatic+SC">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="/images/burg_icon.png">
<title>Weekend Recipes Home Page</title>
</head>
<body>
<h1>Weekend Recipes</h1>
<div class="logo-container">
<div></div>
<img src="images/burg2.png" class="logo">
<div></div>
<div></div>
<p class="description">Enjoy your favourite Dishes!</p>
<div></div>
</div>
<div class="container">
<div class="item">
<div class="rec-title"><h3>Basic Crêpes</h3>
<p class="above-button">This simple but delicious crêpe recipe can be made in minutes from ingredients that everyone has on hand.</p>
<img src="images/arrow4.gif" class="arrow">
<div class="but">
<a href="pages/crepe/crepe.html" >
<button type="button">Start Cooking!</button>
</a>
</div>
</div>
<img src="images\crep.webp" class="food">
</div>
<div class="item">
<div class="rec-title"><h3>Pepperoni Pizza</h3>
<p class="above-button">This pepperoni pizza recipe produces a quick and easy classic! <i>Delicious</i> homemade pizza crust and tomato sauce have never been easier.</p>
<img src="images/arrow4.gif" class="arrow">
<div class="but">
<a href="pages\pepperoni\pepperoni.html" >
<button type="button">Start Cooking!</button>
</a>
</div>
</div>
<img src="images\piz.webp" class="food">
</div>
<div class="item">
<div class="rec-title"><h3>Hearty Vegetable Lasagna</h3>
<p class="above-button">This hearty, vegetable lasagna is the only lasagna my son will eat. We love it! Hope you all enjoy it as much as we do.</p>
<img src="images/arrow4.gif" class="arrow">
<div class="but">
<a href="pages\lasagna\lasagna.html" >
<button type="button">Start Cooking!</button>
</a>
</div>
</div>
<img src="images\las2.jpg" class="food">
</div>
<div class="item">
<div class="rec-title"><h3>Chocolate Éclair Dessert</h3>
<p class="above-button">This chocolate éclair dessert is a no-bake pudding dessert that's so quick and easy to make — everyone <i>loves</i> it.</p>
<img src="images/arrow4.gif" class="arrow">
<div class="but">
<a href="pages\eclair\eclair.html" >
<button type="button">Start Cooking!</button>
</a>
</div>
</div>
<img src="images\ecl.jpg" class="food">
</div>
</div>
</body>
</html>