-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (82 loc) · 3.77 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Eat Fresh</title>
<link
rel="shortcut icon"
href="media/icons/favicon.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="css/main.css" />
</head>
<body class="margin-zero">
<main>
<section class="introduction flex align-center justify-between">
<div class="">
<h1 class="margin-zero">
<span>Skip</span> The Diet,
<br>
Just Eat Healthy
<br>
With Food Network
</h1>
<p class="margin-zero">Imagine you don't need a diet because we provide
healthy and delicious food for you!</p>
<button>Order Food</button>
</div>
<div class="introduction-image-container">
<img src="media/images/male/Hero_Image.png" alt="">
</div>
</section>
<section class="about flex align-center justify-center">
<div class="half-width flex align-center justify-center">
<img src="media/images/female/Person Image.png" alt="">
</div>
<div class="half-width about-text-container">
<h1 class="margin-zero">About Me</h1>
<p class="margin-zero">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Condimentum diam orci pretium a pharetra, feugiat cursus. Dictumst risus, sem egestas odio cras adipiscing vulputate. Nisi, risus in suscipit non. Non commodo volutpat, pharetra, vel.</p>
<button>Contact Me</button>
</div>
</section>
<section class="recipies">
<div class="flex flex-column align-center justify-center recipies-text-container">
<h1 class="margin-zero">My recipies</h1>
<p class="margin-zero text-align-center">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
<div class="flex recipies-container align-center justify-center">
<div class="recipy">
<img src="media/images/food/Project Cover.jpg" alt="">
<h2 class="margin-zero">Recipie Title</h2>
<p class="margin-zero">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
<div class="recipy">
<img src="media/images/food/Project Cover.jpg" alt="">
<h2 class="margin-zero">Recipie Title</h2>
<p class="margin-zero">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
</div>
</div>
</section>
<section class="summary flex align-center justify-evenly">
<div>
<h1 class="margin-zero">700k</h1>
<p class="margin-zero">Youtube Subscribers</p>
</div>
<div>
<h1 class="margin-zero">2.4m</h1>
<p class="margin-zero">Instagram Followers</p>
</div>
<div>
<h1 class="margin-zero">100k</h1>
<p class="margin-zero">Dribbble Shot Likes</p>
</div>
</section>
</main>
<footer class="text-align-center">
<h1 class="margin-zero"><span>Eat</span> Fresh</h1>
<p>Eat healthy to live healthy. Live healthy to live happy.</p>
</footer>
</body>
</html>