-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (106 loc) · 4.46 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
108
109
110
<!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">
<link rel="stylesheet" href="style.css">
<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=Montserrat:wght@400;500;700;900&family=Roboto:wght@900&display=swap"
rel="stylesheet">
<link rel="shortcut icon" href="images/shapes/favicon.ico" type="image/x-icon">
<title>Food Network</title>
</head>
<body>
<header id="header">
<div class="header-container">
<div class="header-left">
<a href="#" alt="Food Network">Food Network</a>
</div>
<div class="header-right">
<ul>
<li><a href="#header">Home</a></li>
<li><a href="#about-us">About</a></li>
<li><a href="#myreceipe">My Receipe</a></li>
<li><a href="#milestone">Milestone</a></li>
</ul>
</div>
</div>
</header>
<section class="top-banner" id="top-banner">
<div class="half-width">
<h1><span class="highlighter">Skip</span> The Diet, <br>Just Eat Healthy<br> With Food Network</h1>
<p>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="half-width">
<img src="images/female/Group 8425.png" alt="">
</div>
</section>
<!-- Start About Section -->
<section class="about" id="about-us">
<div class="about-person half-width">
<img src="images/female/Person Image.png" alt="">
</div>
<div class="about-text half-width">
<h1>About Me</h1>
<p>I already learned the basic HTML and CSS. I can build any simple website. I'm seeking opportunities
to
develop my skill in Web Development to make fantastic website. My goal is to learn advanced topics.
</p>
<a class="btn" href="#" target="_blank">Contact Me</a>
</div>
</section>
<section class="receipies" id="myreceipe">
<div class="top-area">
<h1>My recipies</h1>
<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="receipe-item">
<div id="receipe-item1">
<img src="images/food/Project-Cover1.jpg" alt="receipe title">
<h3>Coconut Rice Delight</h3>
<p>It is an interesting and flavored pulao recipe made ideally with long grain rice and coconut milk.
</p>
</div>
<div id="receipe-item2">
<img src="images/food/Project-Cover2.jpg" alt="receipe title">
<h3>Moong Dal Khichdi</h3>
<p>Moong Dal Khichdi is for everyone! ... When you're just too lazy to make something lavish or
prepare..</p>
</div>
<div id="receipe-item3">
<img src="images/food/Project-Cover3.png" alt="receipe title">
<h3>Vegetable Pulao</h3>
<p>Pulao or pilaf, is comfort food at its best and I make it when I want to cook something quick, easy..
</p>
</div>
</div><!-- END OF receipe-item -->
</section><!-- END OF receipe section -->
<section class="milestone-row" id="milestone">
<div class="milestone-container">
<div class="milestone-item">
<h1>700k</h1>
<p>Youtube Subscribers</p>
</div>
<div class="milestone-item">
<h1>2.4m</h1>
<p>Instagram Followers</p>
</div>
<div class="milestone-item">
<h1>100k</h1>
<p>Dribbble Shot Likes</p>
</div>
</div>
</section><!-- END OF milestone section -->
<footer>
<div class="footer-container">
<h1><span class="special">FOOD</span> NETWORK</h1>
<p>Eat healthy to live healthy. Live healthy to live happy.</p>
</div>
</footer>
</body>
</html>