-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link rel="icon" href="images/icon.png">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>mealFindr</title>
</head>
<body>
<div class="container">
<!-- navbar area -->
<nav class="navbar navbar-light">
<div class="container-fluid align-items-center">
<a class="navbar-brand" href="#"><img src="images/logo.png" alt="mealFindr logo"></a>
<a href="#"><button class="btn random_meal" type="submit">GENERATE <i class="fas fa-random"></i></button></a>
</div>
</nav>
<!-- hero area -->
<div class="project_info">
<h1>mealFindr</h1>
<p>your number place to find the perfect dish and its recipe</p>
<p class="search-title">Search for all varities of food</p>
<!-- search form -->
<form class="search input-group mb-3">
<input type="text" class="s-meal form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default">
<button class="input-group-text" id="inputGroup-sizing-default"><i class="fas fa-search"></i></button>
</form>
</div>
<div class="s-result"></div>
<div class="meals row justify-content-around">
<!-- for the list of searched foods -->
</div>
<div class="randomGeneratedMeal">
</div>
</div>
<!-- footer of the page-->
<footer>
<div class="container d-flex justify-content-between align-items-center">
<a href="#"><img style="width: 70%;" src="images/logo.png" alt="mealFindr logo"></a>
<p class="copyright">copyright <span>mealFindr</span> 2021</p>
</div>
</footer>
<script src="js/app.js"></script>
</body>
</html>