-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 943 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&family=Patua+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Food Recipe App</title>
</head>
<body>
<section>
<div class="container initial">
<h1 class="brand">Recipe App</h1>
<form>
<input type="text" placeholder="Search for a recipe....">
<i class="fa fa-search" aria-hidden="true"></i>
</form>
<div class="search-result"></div>
</div>
</section>
<script src="app.js"></script>
</body>
</html>