-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (73 loc) · 2.49 KB
/
index.html
File metadata and controls
76 lines (73 loc) · 2.49 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>WhattaCook - recipes web application</title>
<!-- Search Engine -->
<meta
name="description"
content="Find recipes, filtered by ingredients you have at home"
/>
<link rel="canonical" href="https://katamatata.github.io/" />
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Recipes web application" />
<meta
property="og:description"
content="Find recipes, filtered by ingredients you have at home"
/>
<meta
property="og:image"
content="https://katamatata.github.io/images/screenshot.jpg"
/>
<meta property="og:url" content="https://katamatata.github.io/" />
<meta property="og:site_name" content="WhattaCook" />
<meta property="og:type" content="website" />
<link rel="stylesheet" type="text/css" href="styles/reset.css" />
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<script src="https://kit.fontawesome.com/de514a2348.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Lato&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div id="header-inner">
<div id="header-left">
<div id="logo-wrapper">
<a href="#"><img src="images/logo.png" alt="logo" id="logo"/></a>
</div>
</div>
<div id="header-right">
<div id="input-group">
<input
type="text"
id="searchField"
placeholder="Search over recipes.."
/>
<button type="button" onclick="onSearchClicked()">
<i class="fas fa-search"></i>Search
</button>
</div>
<!-- <label for="resultsPerSearch">Results per search: </label>
<input type="number" id="resultsPerSearch" value="0" min="0" max="10" /> -->
<div id="heart">
<span>Favourites</span>
<i class="fas fa-heart"></i>
</div>
</div>
</div>
</header>
<div id="big-container">
<section id="recipeListSection"></section>
<section id="recipeSection"></section>
</div>
<div id="dropdown">
<div id="layer"></div>
<div id="dropdownInner"></div>
</div>
<script src="javascript/main.js"></script>
</body>
</html>