-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (103 loc) · 4.23 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
107
<!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 healtht project</title>
<!-- google font link -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<!-- style css link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header section start -->
<section id="header">
<div class="container">
<div class="header">
<div class="left-side clearfix">
<h1><span class="span-color">Skip </span>The Diet, Just Eat Healthy With Food Network</h1>
<p class="p-30">Imagine you don't need a diet because we provide healthy and delicious food for you!</p>
<a class="btn" href="#" target="_blank">Order Food</a>
</div>
<div class="right-side clearfix">
<img src="images/male/hero_1.jpg" alt="Image">
</div>
</div>
</div>
</section>
<!-- header section end -->
<!-- about section start -->
<section id="about" class="about">
<div class="container">
<div class="about-image clearfix">
<img src="images/female/person-image.png" alt="image">
</div>
<div class="about-content clearfix">
<h2>About Me</h2>
<p>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>
<a class="btn" href="#" target="_blank">Contact me</a>
</div>
</div>
</section>
<!-- about section end -->
<!-- blog section start -->
<section id="blog" class="blog">
<h2 class="blog-sub-title">My Recipies</h2>
<div class="blog-sub-title">
<p>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="container">
<div class="blog-item">
<img src="images/food/food_1.jpg" alt="">
<h3>Recipie Title</h3>
<p>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="blog-item">
<img src="images/food/food_2.jpg" alt="">
<h3>Recipie Title</h3>
<p>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>
<!-- blog section end -->
<!-- footer top section start -->
<section id="footer-top">
<!-- <div class="container"> -->
<div class="footer-top">
<div class="footer-top-item">
<h1>700k</h1>
<p>Youtube Subscribers</p>
</div>
<div class="footer-top-item">
<h1>2.4m</h1>
<p>Instagram Followers</p>
</div>
<div class="footer-top-item">
<h1>100k</h1>
<p>Dribbble Shot Likes</p>
</div>
</div>
<!-- </div> -->
</section>
<!-- footer top section end -->
<!-- footer section start -->
<section class="footer" id="footer">
<h2><span class="span-color">Eat</span> Fresh</h2>
<p>Eat healthy to live healthy. Live healthy to live happy.</p>
</section>
<!-- footer section end -->
</body>
</html>