-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutUs.html
101 lines (92 loc) · 4.15 KB
/
AboutUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mommy's Recipes | About Us</title>
<link rel="icon" href="images/logo.jpg" sizes="16x16" type="image/png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/Style.css">
<link rel="stylesheet" href="css/About.css">
</head>
<body>
<section id="bg">
<header>
<img src="images/logo.jpg" id="logo" alt="Logo"/>
<nav class="topnav" id="navbar">
<a href="javascript:void(0);" class="icon" onclick="myFunction()"><i class="fa fa-bars"></i></a><br class="navbr"><br class="navbr">
<a href="Contact.html" tabindex="5">Contact Us</a>
<a href="OurChefs.html" tabindex="4">Our Chefs</a>
<a href="Specialities.html" tabindex="3">Specialities</a>
<a href="#" id="active" tabindex="2">About Us</a>
<a href="index.html" tabindex="1">Home</a>
</nav>
</header>
<section id="main">
<div class="counter-up">
<div class="content">
<div class="break">
<div class="box">
<div class="icon"><i class="fa fa-handshake-o" aria-hidden="true"></i></div>
<div class="stat"><div class="counter">25</div><i class="fa fa-plus fa-custom"></i></div>
<div class="text">Contributions from Chefs around the world</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-folder-open-o"></i></div>
<div class="stat"><div class="counter">10</div><i class="fa fa-plus fa-custom"></i></div>
<div class="text">Recipe Categories</div>
</div>
</div>
<div class="break">
<div class="box">
<div class="icon"><i class="fa fa-cutlery"></i></div>
<div class="stat"><div class="counter">100</div><i class="fa fa-plus fa-custom"></i></div>
<div class="text">Recipes</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-trophy"></i></div>
<div class="stat"><div class="counter">10</div><i class="fa fa-plus fa-custom"></i></div>
<div class="text">Awards Received</div>
</div>
</div>
</div>
</div>
<div class="info">
<div>
<h1>About Us</h1>
<p>At Mommy's Recipes, we are a team of passionate chefs, moms (natural chefs), web developers and contributors (users like you) from across the globe. All the recipes that have been included into our site are a result of their hard work and contributions, most of them being passed on from generartion to generation. We bring together eternal favourites from all over the world and promise a matching taste to your every mood.</p>
<p>We, as a team, have been successful in providing the users with 100+ recipes across 10+ categories, and are determined to provide the best possible services to all. We are always open to new recipes and suggestions to achieve our goal of excellence.</p>
<p>Needless to mention, we are hungry for your feedback on how you like our recipes, so do share your tongue-felt thoughts!</p>
</div>
</div>
</section>
</section>
<footer>
<div>
<span>Made with 💖</span>
<div>
<i class="fa fa-facebook-square fa-custom1 fa-2x"></i>
<i class="fa fa-youtube-square fa-custom2 fa-2x"></i>
<i class="fa fa-twitter-square fa-custom3 fa-2x"></i>
<i class="fa fa-instagram fa-custom4 fa-2x"></i>
<i class="fa fa-envelope fa-custom5 fa-2x"></i>
<i class="fa fa-pinterest-square fa-custom6 fa-2x"></i>
<i class="fa fa-linkedin-square fa-custom7 fa-2x"></i>
</div>
<span>© Mommy's Recipes</span>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Counter-Up/1.0.0/jquery.counterup.min.js"></script>
<script src="js/nav.js"></script>
<script>
$(document).ready(function(){
$('.counter').counterUp({
delay: 10,
time: 1200
});
});
</script>
</body>
</html>