-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (56 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Whisked Wonders</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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=Oswald:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<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=Nova+Square&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/styles/styles.css">
<link rel="icon" type="image/x-icon" href="Images/favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<!-- Nav Section -->
<div class="nav-wrapper">
<nav>
<ul class="nav-icons">
<li><a href="index.html"><i class="fa-solid fa-house"></i></li>
<li><a href="recipe.html"><i class="fa-solid fa-cake-candles" style="color: #935215;"></i></a></li>
<li><a href="location.html"><i class="fa-solid fa-location-dot" style="color: #7c4527;"></i></a></li>
</ul>
</nav>
</div>
<!-- Welcome Section -->
<div class="top">
<img src="Images/bakery-2.jpeg" alt="bakery">
<h1>Whisked Wonders</h1>
<p>Welcome to the greatest info page on the planet for all of your bakery needs</p>
</div>
<!-- Button Section -->
<div class="middle">
<h2>Want to know the <strong>SECRET</strong> to our delicious goodies? or Find a spot to travel and Indulge </h2>
<div class="buttons">
<button id="recipeButton" class="recipe-button">Recipe</button>
<button id="locationButton" class="location-button">Location</button>
</div>
</div>
<!-- Footer Icon -->
<footer>
<ul class="icons">
<li><a href="https://www.tiktok.com/@visitlondon/video/7184473978608684293?q=bakery%20in%20london&t=1701702761403"><i class="fa-brands fa-tiktok fa-lg" style="color: #a9540f;"></i>
<li><a href="https://www.instagram.com/p/C0HjCuksS9L/"><i class="fa-brands fa-instagram fa-lg" style="color: #a26510;"></i>
<li><a href="https://www.youtube.com/shorts/9-8LUW5tqBg"><i class="fa-brands fa-youtube fa-lg" style="color: #9a6418;"></i>
</ul>
</footer>
<script src="https://kit.fontawesome.com/cac3a8c0cc.js" crossorigin="anonymous"></script>
<script src="./assets/script/index.js"></script>
</body>
</html>