-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.37 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My recipeAPP</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header id="hero">
<div class="header-container">
<div class="wrapper">
<div class="box"></div>
<span> Welcome to...</span>
<h1 id="app-title">BetterCook</h1>
<p>Change your life now by cooking healthier and simpler food.</p>
<nav class="navbuttons">
<a href="#search-section" class = "button"> Search now</a>
</nav>
</div>
</div>
</header>
<main>
<section id="search-section">
<div class="search-box" style= "position:relative;">
<input type="text" id="search-input" placeholder="Find new recipes here...">
<button id="search-button">Search</button>
<ul id="suggestions-list"></ul>
</div>
<div id="recipe-details-section" class="hidden">
<div id="recipe-details-container"></div>
</div>
</section>
</main>
<footer>
<p>© 2026 </p>
<p>Developed by Andrei</p>
</footer>
<script src="js/main.js" type="module"></script>
</body>
</html>