forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (142 loc) · 5.67 KB
/
index.html
File metadata and controls
154 lines (142 loc) · 5.67 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, intial-scale=1.0" />
<title>Know Your Food</title>
<link href="styles.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/714e7707f1.js" crossorigin="anonymous"></script>
<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=Kumbh+Sans&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="navbar_Container">
<a href="/" id="navbar_logo"><i class="fa-solid fa-burger"></i> Know Your Food</a>
<div class="navbar_toggle" id="mobile_menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar_menu">
<li class="navbar_item">
<a href="index.html" class="navbar_links">
Home
</a>
</li>
<li class="navbar_item">
<a href="food.html" class="navbar_links">
Food
</a>
</li>
<li class="navbar_item">
<a href="Recipie.html" class="navbar_links">
Recipies
</a>
</li>
<li class="navbar_item">
<a href="Component.html" class="navbar_links">
Components
</a>
</li>
<li class="navbar_item">
<a href="AboutUs.html" class="navbar_links">
About Us
</a>
</li>
</ul>
</div>
</nav>
<div class="main">
<div class="main_container">
<div class="main_img_Container">
<!--<img src="img/HomeImage.jpg" alt="no image" id="main_img" />-->
<div class="main_Content">
<h1>Know Your Food</h1>
<h2>Based on food items</h2>
<p>See what makes us diffrent</p>
<button onclick="window.location='food.html';" class="main_btn">Get Started</button>
</div>
</div>
</div>
</div>
<div class="services">
<h1>Want to know more about your food</h1>
<div class="services_Container">
<div class="services_card">
<h2>Calorie Count</h2>
<p>Based on Ingredients</p>
<button onclick="window.location='Recipie.html';" class="main_btn">Get Started</button>
</div>
<div class="services_card">
<h2>How Healthy Your Food Is?</h2>
<p>Based on components</p>
<button onclick="window.location='Component.html';" class="main_btn">Get Started</button>
</div>
</div>
</div>
<!--footer section-->
<div class="footer_Container">
<div class="footer_link">
<div class="footer_link_wrapper">
<div class="footer_link_items">
<h2>About Us</h2>
<a href="">How It Works</a>
<a href="AboutUs.html">Testimonials</a>
<a href="">Carrers</a>
<a href="">Terms of Service</a>
</div>
<div class="footer_link_items">
<h2>Contact Us</h2>
<a href="">Contact</a>
<a href="">Destination</a>
<a href="">Sponsorships</a>
<a href="">Support</a>
</div>
</div>
<div class="footer_link_wrapper">
<div class="footer_link_items">
<h2>Videos</h2>
<a href="">Submit Videos</a>
<a href="">Agency</a>
<a href="">Influencer</a>
<a href="">Ambassador</a>
</div>
<div class="footer_link_items">
<h2>Social Media</h2>
<a href="">Facebook</a>
<a href="">Instagram</a>
<a href="">Youtube</a>
<a href="">Twitter</a>
</div>
</div>
</div>
<div class="social_media">
<div class="social_media_wrap">
<div class="footer_logo">
<a href="" id="footer_logo"><i class="fa-solid fa-burger"></i>Know Your Food</a>
</div>
<p class="website_right">@Know Your Food 2022. All Right Reserved</p>
<div class="social_icons">
<a href="" class="social_icon_link" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
<a href="" class="social_icon_link" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a href="" class="social_icon_link" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="" class="social_icon_link" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="" class="social_icon_link" target="_blank">
<i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>