-
Notifications
You must be signed in to change notification settings - Fork 1
/
meal.html
121 lines (107 loc) · 4.83 KB
/
meal.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<Link rel="stylesheet" href="./style/meal.css">
</Link>
<script src="https://kit.fontawesome.com/776f38ba77.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- nav for meal.html-->
<nav>
<!-- nav section for the meal app -->
<div class="nav-container">
<!-- nav left section for the meal app -->
<div class="nav-left">
<!-- logo section of the nav -->
<div class="nav-logo">
<a href="index.html"><i class="fa-solid fa-utensils"></i></a>
<span>Pour Tous</span>
</div>
</div>
<!-- nav right section for the meal app-->
<div class="nav-right">
<!-- meal section of the nav-->
<div class="nav-meal">
<a href="./meal.html">Meal</a>
</div>
<!-- favourite section of the nav -->
<div class="like-button">
<a href="./favourite.html" > <i class="fa-sharp fa-solid fa-heart"></i>
<span id="like-conunt">0</span></a>
</div>
</div>
</div>
</nav>
<!-- main for meal.html -->
<main>
<div class="main-section">
<!-- fetch data from meal.js -->
<div class="details-container">
<i class="fa-solid fa-xmark"></i>
<div class="details-meal-name">
<h2 id="Meal">Meal</h2>
</div>
<div class="details-category-name">
<h3 id="category-name">CategoryName</h3>
</div>
<div class="details-instructions">
<h3 id="Instruction">Instruction:</h3>
</div>
<div class="details-para">
<p id="details-para">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
</div>
<div class="details-image">
<img id="details-image" src="https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxleHBsb3JlLWZlZWR8NXx8fGVufDB8fHx8fA%3D%3D&w=1000&q=80"/>
</div>
<div class="watch-video" style="margin-top:20px;">
<a id="watch-video" href="#">Watch Video</a>
</div>
</div>
</div>
</main>
<!-- for the fotter section -->
<fotter>
<!-- container for the whole fotter section-->
<div class="fotter-div">
<!-- soical section for the fotter -->
<div class="soical-icons-div">
<div class="soical-icons">
<i class="fa-brands fa-facebook-f"></i>
</div>
<div class="soical-icons">
<i class="fa-brands fa-instagram"></i>
</div>
<div class="soical-icons">
<i class="fa-brands fa-linkedin-in"></i>
</div>
<div class="soical-icons">
<i class="fa-brands fa-youtube"></i>
</div>
</div>
<!-- option section for the fotter -->
<div class="fotter-options">
<span>PRIVACY</span>
<span>T&C</span>
<span>DISCLAIMER</span>
<span>FEEDBACK</span>
<span>COVID-19 PRECAUTION</span>
<span>CONTACT LESS DELIVERY</span>
</div>
<!-- copyright for the fotter section -->
<div class="fotter-copyrighgt">
<div class="fotter-copyrighgt-span">
<span>______________________________________________________________________________________________________________________________________________</span>
</div>
<br>
<div class="fotter-copyrighgt-span">
<span>@2020 Copyright.All Rights Are Reserved @Pour Tous Food Works Pvt.Ltd.. </span>
</div>
</div>
</fotter>
<!-- script for meal.js -->
<script src="./js/meal.js"></script>
</body>
</html>