forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathComponent.html
More file actions
147 lines (137 loc) · 5.73 KB
/
Component.html
File metadata and controls
147 lines (137 loc) · 5.73 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
<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="index.html" 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">
<h1 style="color: #ff8177;text-align:center;">Find Food Based On Components</h1>
<h3 style="color: white; text-align: center; padding: 2rem;">Get Food item based on component to empower you to create a better diet. Type in component to see the Food and value. Note- search for calcium, protein,zinc for result and any other items for no result.</h3>
<div class="box ">
<div class="search-box">
<input id="componentInput" type="text" placeholder="calcium,protein,zinc..." />
<label for="" class="icon">
<button id="componentBtn" class="fa-solid fa-search"></button>
</label>
</div>
</div>
<table id="Componenttb" style="width:80%;margin:auto;">
<thead>
<tr id="record">
<th>Food</th>
<th>Daily Value</th>
</tr>
</thead>
<tbody style="color:white" id="ComponentData">
</tbody>
</table>
<h3 id="norecord" style="color: white; text-align: center;display:none; padding: 2rem;">No Record Found</h3>
</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="">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="component.js"></script>
</body>
</html>