-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
68 lines (65 loc) · 2.39 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
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Katibeh&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap"
rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<div class="branding">
<img class="logo" src="./assets/images/logo.svg"></img>
<a href="./index.html" style="color: inherit;"> <h1>AL DENTE</h1> </a>
</div>
<nav>
<ul>
<li>
<a href="./contact.html">contact</a>
</li>
<li>
<a href="./index.html">home</a>
</li>
</ul>
</nav>
</header>
<main>
<h2>Recipes that fit your ingredients</h2>
<div class="row justify-content-center">
<div>
<input class="search-bar col-4" type="text" placeholder="Search" id="button-search"></input>
</div>
<div class="old-recipes">
</div>
</div>
<!-- Output displayed below for search results -->
<!-- <div class="search-results">
<div class="item">
<img src="assets/images/placeholderFood.jpg" alt="searchresultPLaceholder">
<div class="flex-container">
<h3 class="title">This is a Recipes</h3>
<a href="#">View Recipe</a>
<div>
<p class="item-data">Calories: 200</p>
</div>
</div>
</div>
</div>-->
<section class="vstack mx-auto">
<div class="container-fluid">
<section class="row justify-content-between" id="container">
</section>
</div>
</main>
<div class="contianer-fluid">
<section class="row justify-content-between" id="container">
</section>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="./assets/js/app.js" defer></script>
</body>
</section>