-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Async</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</head>
<body class="bg-warning">
<div class="d-flex justify-content-between mb-2 p-3">
<h1>Country Dishes🍽️</h1>
<input class="text-center border-2 rounded-2 overflow-hidden w-25" type="text" name="" id="" placeholder="Search for dishes...">
</div>
<div class="d-flex justify-content-center flex-wrap mb-5 gap-3">
<img id="American" style="cursor: pointer;" src="./images/abd.png" alt="" />
<img id="Canadian" style="cursor: pointer;"src="./images/canada.png" alt="" />
<img id="French" style="cursor: pointer;" src="./images/fransa.png" alt="" />
<img id="Indian" style="cursor: pointer;" src="./images/india.png" alt="" />
<img id="Turkish" style="cursor: pointer;"src="./images/tr.png" alt="" />
</div>
<div class="container">
<div class="row food text-center">
<!--! meals ın basılacağı alan -->
</div>
</div>
<script src="./meal.js"></script>
</body>
</html>