-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (47 loc) · 1.67 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">
<title>Mommy's Recipes | Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="images/logo.jpg" sizes="16x16" type="image/png">
<link rel="stylesheet" href="css/Style.css">
</head>
<body>
<section class="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="AboutUs.html" tabindex="2">About Us</a>
<a href="#" id="active" tabindex="1">Home</a>
</nav>
</header>
<section id="main">
<p>Welcome to</p>
<h1>Mommy's</h1>
<p>Recipes</p>
</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="js/nav.js"></script>
</body>
</html>