-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (71 loc) · 2 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="Cooking recipe">
<meta name="keywords" content="HTML,CSS,cooking,recipe">
<meta name="author" content="Darshan Datta">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" type="text/css">
<script type="text/javascript" src="./js/html5shiv-printshiv.js">
</script>
<title>MyRecipe</title>
</head>
<body>
<header>
<div class="left">
<ul>
<li>Popular Recipes</li>
<li>Whats New</li>
</ul>
</div>
<div class="right">
<ul>
<li>Categories</li>
<li>Meal Ideas</li>
</ul>
</div>
<div class="middle">
<img src="./images/images/chefs-hat.png" alt="">
<p>MyRecipes</p>
</div>
</header>
<!-- main body part -->
<div id="main">
<p>Join our email club</p>
<p>Sign up now!</p>
<form class="" action="index.html" method="post">
<input type="email" id="email" name="email" placeholder="enter your email">
<button id="click" type="submit" name="button">CLICK HERE</button>
</form>
</div>
<div class="cf">
<div class="box">
<a href="#" target="_blank"><img src="/home/darshan/Project/MyRecipe/images/images/pizza.jpg" alt="">
<p>Vegetarian?</p>
</a>
</div>
<div class="box">
<a href="#" target="_blank"><img src="/home/darshan/Project/MyRecipe/images/images/pasta.jpg" alt="">
<p style="color: #fff;">5 Minute Meals</p>
</a>
</div>
<div class="box">
<a href="#" target="_blank"><img src="/home/darshan/Project/MyRecipe/images/images/diet.jpg" alt="">
<p>Diet Recipes</p>
</a>
</div>
</div>
</body>
<footer>
<div class="">
<img src="/home/darshan/Project/MyRecipe/images/images/cutlery.png" alt="">
</div>
<ul>
<li>About Us</li>
<li>Contact Us</li>
<li>Suggest a Recipe</li>
<li class="noborder">Privacy</li>
</ul>
</footer>
</html>