-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
36 lines (33 loc) · 1.11 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Realm</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<section>
<div class="container initial">
<h1 class="brand">Recipe App</h1>
<form>
<input type="text" placeholder="Search Recipe...">
<ion-icon name="search"></ion-icon>
</form>
<div class="search-result">
<!-- <div class="item">
<img src="./hero-banner-medium.jpg" alt="">
<div class="flex-container">
<h1 class="title">This is a recipe item</h1>
<a class="view-btn" href="#">View Recipe</a>
</div>
<p class="item-data">Calories: 120</p>
</div>
-->
</div>
</div>
</section>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script src="main.js"> </script>
</body>
</html>