-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmis&vis.html
119 lines (98 loc) · 5.18 KB
/
mis&vis.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--========== Google tag (gtag.js) ==========-->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-455916397"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-455916397');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--========== BOX ICONS ==========-->
<link href='https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css' rel='stylesheet'>
<!--========== CSS ==========-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Responsive website food</title>
</head>
<body>
<!--========== SCROLL TOP ==========-->
<a href="#" class="scrolltop" id="scroll-top">
<i class='bx bx-chevron-up scrolltop__icon'></i>
</a>
<!--========== HEADER ==========-->
<header class="l-header" id="header">
<nav class="nav bd-container">
<a href="index.html" class="nav__logo"><img src="assets/img/mealcraft-logo.png" alt="MealCraft Logo" !--class="nav__logo"--></a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li><i class='bx bx-moon change-theme' id="theme-button"></i></li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu' style="float: right; padding-right: 2px;" ></i>
</div>
</nav>
</header>
<main class="l-main">
<!--===== Mission and Vision =======-->
<section class="box section bd-container">
<div class="app__container bd-grid">
<div class="box__data">
<h2 class="section-title app__initial">Our Mission</h2>
<p class="box__description">Reducing food waste while creating value in the joy of cooking.</p>
<h2 class="section-title app__initial">Our Vision</h2>
<p class="box__description">Eliminating the boring parts of cooking by automating raw material preparation, while creating the operational network to deliver such materials to the end user.</p>
</div>
</div>
</section>
<!--========== FOOTER ==========-->
<footer class="footer section bd-container">
<div class="footer__container bd-grid">
<div class="footer__content">
<a href="#" class="footer__logo">MealCraft</a>
<span class="footer__description">Meal Delivery Service</span>
<div>
<a href="#" class="footer__social"><i class='bx bxl-facebook'></i></a>
<a href="#" class="footer__social"><i class='bx bxl-instagram'></i></a>
<a href="#" class="footer__social"><i class='bx bxl-twitter'></i></a>
</div>
</div>
<div class="footer__content">
<h3 class="footer__title">Services</h3>
<ul>
<li><a href="#" class="footer__link">Delivery</a></li>
<li><a href="#" class="footer__link">Pricing</a></li>
<li><a href="#" class="footer__link">Health</a></li>
<li><a href="#" class="footer__link">Our Team</a></li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Information</h3>
<ul>
<li><a href="#" class="footer__link">Mission and Vision</a></li>
<li><a href="mailto:roshan98831@gmail.com?subject=Contact MealCraft" class="footer__link">Contact us</a></li>
<li><a href="privacypolicy.html" class="footer__link">Privacy policy</a></li>
<li><a href="#" class="footer__link">Terms of services</a></li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Address</h3>
<ul>
<li>West Bengal - India</li>
<li>Kolkata 700000</li>
<li>987 - 654 - 321</li>
<li>mealcraft@email.com</li>
</ul>
</div>
</div>
<p class="footer__copy">© 2023 DevBlocker. All right reserved</p>
</footer>
<!--========== SCROLL REVEAL ==========-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--========== MAIN JS ==========-->
<script src="assets/js/main.js"></script>
</body>
</html>