-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (43 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/homepage.css">
<!-- fonts -->
<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=Leckerli+One&display=swap" rel="stylesheet">
<title>SavoryTales</title>
</head>
<body>
<div>
<img id="home-pic" src="assets/img/homepage/homepage-1.png" alt="">
</div>
<div id="home-logo">
<p>
SavoryTales
</p>
</div>
<nav class="nav-bar">
<button class="menu-button">☰</button>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="/pages/Recipes.html">Recipes</a>
<a href="/pages/AboutUs.html">About Us</a>
<a href="/pages/Contact.html">Contact</a>
</div>
</nav>
<div class="home-text">
<div class="heading">
<p>Discover Your New <br>Favourite Dish With Our</p>
<span>Tasty Recipes!</span>
</div>
<div class="sub-heading">
<p>Discover new recipes, cook with passion, and savor every bite. <br> Perfect for seasoned chefs and beginners alike.</p>
</div>
<button onclick="location.href='/pages/Recipes.html'">Explore Recipes</button>
</div>
<script src="/js/home-page.js"></script>
</body>
</html>