-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
44 lines (40 loc) · 1.36 KB
/
footer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- EXTERNAL LINKS -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/footer.css">
</head>
<body>
<footer>
<section>
<div id="containerFooter">
<div id="webFooter">
<h3> Online Farm store </h3>
<p> Farming Tools </p>
<p> Fruits </p>
<p> Vegetables </p>
<p> Farming Accessories </p>
</div>
<div id="webFooter">
<h3> Helpful link </h3>
<p> Home </p>
<p> Buy </p>
<p> Sell</p>
</div>
<div id="webFooter">
<h3> Address </h3>
<p> Flat Number 101 </p>
<p> HSR Layout </p>
<p> Bangalore - 8602722 </p>
<p> India </p>
</div>
</div>
</section>
</footer>
</body>
</html>