-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (67 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fruit Website | Yayady</title>
<link rel="stylesheet" href="food.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap" rel="stylesheet">
<link href="https://fontawesome.com/v4.7/icon/search ">
<link href="https://fontawesome.com/v5.15/icons/">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<div id="container">
<div id="image">
<img src="food%20image.jpg" alt="food image" id="background">
<img src="apple.png" alt="apple image" id="apple">
</div>
<div id="sidebar">
<div id="navbar">
<ul>
<li><span></span><a href="#">Home</a></li>
<li><span></span><a href="#">Blog</a></li>
<li><span></span><a href="#">Fruits</a></li>
<li><span></span><a href="#">Contact</a></li>
<li><span></span><a href="#">Privacy</a></li>
</ul>
</div>
<div id="icons">
<div id="openNav" class="menuBtns">
<i class="fas fa-angle-double-right open"></i>
</div>
<div id="closeNav" class="menuBtns">
<i class="fas fa-angle-double-left close"></i>
</div>
<i class="fab fa-facebook-f"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-tiktok"></i>
</div>
</div>
<div id="logo">
<img src="logo.png" alt="logo">
</div>
<div id="searchBox">
<input type="text" name="search" placeholder="Find Your Favourite Fruits">
<i class="fas fa-search" id="search"></i>
</div>
<div id="content">
<h2>Fruits</h2>
<h5>
Fruits are a good source of vitamins and minerals, recognized for their role in preventing vitamin C <br> and vitamin A deficiencies. People who incorporate fruits and vegetables as part of a healthy <br> eating pattern have a reduced risk of some chronic diseases.
Fruits are an important part of</br> a healthy eating pattern and the source of many vital nutrients, including potassium, </br>folate, and antioxidants including polyphenols.</h5>
<button>Read More</button>
</div>
<div id="innerContent">
<div id="innerText">
<span></span>
<span></span>
<h3>Fruits are delicious & good for you </h3>
</div>
</div>
</div>
<script src="food.js"></script>
</body>
</html>