-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (36 loc) · 1.34 KB
/
Copy pathindex.html
File metadata and controls
42 lines (36 loc) · 1.34 KB
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
<!--
AUTHOR: Kobina Kyereboah-Coleman
TODO: Index Page
DESCRIPTION: This is the index (landing) page for my "Flavors Unfolded" recipe blog website.
It provides an overview of Flavors Unfolded's content and serves as an entry point to navigate other sections of the site.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flavors Unfolded - Welcome</title>
<link rel="icon" href="../assets/images/index.svg" type="image/svg+xml">
<link rel="stylesheet" href="../assets/css/index.css">
</head>
<body class="index-body">
<!-- Navigation Bar -->
<header>
<nav class="navbar">
<div class="logo">Flavors Unfolded</div>
<ul class="nav-links">
<li><a href="html/login.html">Login</a></li>
</ul>
</nav>
</header>
<!-- Welcome message section -->
<div class="welcome-message">
<h1>Welcome to Flavors Unfolded</h1>
<h2>Discover and share amazing recipes from all over the world. Join our community and explore a wide range of flavors, from traditional dishes to modern cuisines.</h2>
</div>
<!-- Footer with copyright information -->
<footer>
<p>© 2024 Recipes From All Over The World</p>
</footer>
</body>
</html>