-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="x-icon" href="img/icon.png">
<title>Food Recipe App</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<!-- ICONSOUT CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@iconscout/[email protected]/css/line.min.css">
</head>
<body>
<section>
<div class="container initial">
<h1 class="brand">Recipe App</h1>
<form class="initial">
<input type="text" placeholder="Search Your Recipe...">
<i class="uil uil-search"></i>
</form>
<div class="search-result">
<!-- <div class="item">
<img src="img-1.jpg">
<div class="flex-container">
<h1 class="title">This is recipe</h1>
<a class="view-button" href="#">View Recipe</a>
</div>
<p class="item-data">Calories: 12</p>
</div>
<div class="item">
<img src="img-1.jpg">
<div class="flex-container">
<h1 class="title">This is recipe</h1>
<a class="view-button" href="#">View Recipe</a>
</div>
<p class="item-data">Calories: 12</p>
</div>
<div class="item">
<img src="img-1.jpg">
<div class="flex-container">
<h1 class="title">This is recipe</h1>
<a class="view-button" href="#">View Recipe</a>
</div>
<p class="item-data">Calories: 12</p>
</div> -->
</div>
<p class="copy">© <a href="https://github.com/developer-rak" target="_blank">developer-rak</a></p>
</div>
</section>
<!-- UNICONS CDN -->
<script src="https://cdn.jsdelivr.net/npm/@iconscout/[email protected]/script/monochrome/bundle.min.js"></script>
<!-- SCRIPT -->
<script src="script.js"></script>
</body>
</html>