-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (49 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:image" content="https://github.com/Abenezer-Tilahun/MealApp/blob/main/image/Screen-shoot.PNG?raw=true"/>
<meta property="og:description" content="In this project, we built our own web application based on an external API. The web application has 3 user interfaces:which enable
users Search for food, recepies, and full detailed information on how to prepare them"/>
<meta property="og:title" content="Home Cooking"/>
<link href="//fonts.googleapis.com/css?family=Average&subset=latin" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Allison&subset=latin" rel="stylesheet" type="text/css">
<script src="https://kit.fontawesome.com/2b1476549e.js" crossorigin="anonymous"></script>
<title>Home-Chef</title>
</head>
<body>
<header>
<div class="header-top bg-indigo d-flex justify-center">
<div class="logo">
<a href="index.html"><h1>Meal-App</h1></a>
</div>
<nav class="list">
<ul class="d-flex">
<li class="active"><a href="#">Canadian</a><span class="foodCount canadian"></span></li>
<li><a href="#">Portuguese</a><span class="foodCount portuguese"></span></li>
<li><a href="#">Chinese</a><span class="foodCount chinese"></span></li>
</ul>
</nav>
</div>
<div class="header-middle">
<div>
<div class="Mealapp"></div>
<h1 class="text-center">Fresh And Easy</h1>
<p class="text-center">Healthy cooking</p>
</div>
<span class="description">Learn How to Cook Canadian, Portuguese And Chinese Meals!!!</span>
</div>
</header>
<div id="modal" class="d-flex justify-center">
</div>
<main>
<div class="meal-list"></div>
</main>
<footer>
<ul class="d-flex footer-reserved">
<li>Created by <a href="https://github.com/Abenezer-Tilahun">Abenezer Tilahun</a> & <a href="https://github.com/keza681">Linda Keza</a></li>
</ul>
</footer>
<script defer src="main.js"></script></body>
</html>