-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"rel="stylesheet"/>
</head>
<body>
<div class="wrapper">
<nav>
<div class="left">
<h2>Recipe App</h2>
<img width="50" height="50" src="https://img.icons8.com/ios-filled/50/chef-hat.png" alt="chef-hat"/>
</div>
<div class="right">
<form>
<input id="search-input" type="text" placeholder="Search your recipe...">
<button id="search-btn">Search</button>
</form>
</div>
</nav>
<main>
<div class="recipe-container">
</div>
<div class="recipe-details">
<button class="recipe-close-btn">
<i class="ri-close-line"></i>
</button>
<div class="recipe-details-content"></div>
</div>
</main>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js" integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="Animation.js"></script>
<script src="script.js"></script>
</body>
</html>