-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Edamam Recipe</title>
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet" href="assets/css/edamam.css">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
</head>
<body>
<header id="header" class="header header--full-screen">
<h1 class="header__logo">Edamam</h1>
<section class="section section--search">
<form class="search">
<input id="searchInput" class="search__input" placeholder="Enter recipe search">
<button id="searchButton" class="search__button">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search">
<title>Search</title>
<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</button>
</form>
</section>
</header>
<main class="main">
<section id="apiResults" class="section section--infinite-load">
<div id="edamam-results" class="edamam-results"></div>
<div id="edamam" class="edamam">
<!-- RESULTS GO HERE -->
</div>
</section>
<section id="loadMore" class="section section--load-more">
<button id="loadMoreButton" class="load-more">
Load More
</button>
</section>
</main>
<script src="assets/js/main.js"></script>
</body>
</html>