-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-menu.html
96 lines (91 loc) · 4.2 KB
/
index-menu.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./css/nomarlize.css">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css"> <!-- Bulma -->
<link href="https://use.fontawesome.com/releases/v5.12.0/css/all.css" rel="stylesheet">
<title>Restaurant Project</title>
</head>
<body>
<div class="cursor"></div>
<!-- HEADER -->
<header class="section">
<div class="container">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="./index.html">
<img class="tailleImage" src="./Images/logo-nenu.png" alt="logo-restaurant"
style="max-height: 150px" class="is-rounded">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false"
data-target='navMenu'>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-end">
<div class="navbar-item">
<a href="./index.html" class="navbar-item is-active" id="home">
Home
</a>
<a href="./index-menu.html" class="navbar-item" id="menu">
Menu
</a>
<a href="./index-aboutus.html" class="navbar-item" id="AboutUs">
Find Us
</a>
<a href="#" class="navbar-item is-white" id="basket">
Cart
</a>
<div class="field has-addons">
<div class="control">
<input class="input" type="text" placeholder="Find a dish" id="RechercheBar">
</div>
<div class="control">
<a class="button">
Search
</a>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
<!-- MAIN -->
<!-- Menu -->
<main>
<h1 class="title has-text-centered "> Menu </h1>
<p class="has-text-centered is-size-6 is-italic has-text-weight-medium">Here you can find our menu based on
Vietnamese/fusion cuisine:</p>
<!-- Section with all the cards -->
<section class="allCard my-6 columns is-centered is-flex-wrap-wrap is-tablet">
</section>
<section id="results" class="my-6 columns is-centered is-flex-wrap-wrap is-tablet">
</section>
<script src="./js/search.js"></script>
</main>
<!-- End of the menu -->
<!-- FOOTER -->
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Restaurant</strong> project by <a href="https://github.com/NalessoAxel">Axel Nalesso</a>,
<a href="https://github.com/Cemil1000">Cemil Yilmaz</a>, <a href="https://github.com/IgorDeSpi">
Igor de Spirlet</a>, <a href="https://github.com/abdelilahzaidi">Abdelilah Zaidi</a>.Project made
during our training bootcamp at <a href="https://becode.org/">BeCode</a>. 🍜 🥢.
</p>
<i class="fab fa-facebook fa-2x"></i>
<i class="fab fa-instagram fa-2x"></i>
</div>
</footer>
<script src="./js/burger.js" type="text/javascript"></script>
<script src="./js/cart.js"></script>
</body>
</html>