forked from tinkerhub/stackup-teamplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.html
63 lines (62 loc) · 1.74 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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" />
<title>FOOTER | E-COMMERCE WEBSITE BY TEAM SPOTLIGHT</title>
<!-- 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 Store</h3>
<p>men clothing</p>
<p>women clothing</p>
<p>men accessories</p>
<p>women accessories</p>
</div>
<div id="webFooter">
<h3>Helpful link</h3>
<p>home</p>
<p>about</p>
<p>contact</p>
</div>
<div id="webFooter">
<h3>Partners</h3>
<p>zara</p>
<p>pantaloons</p>
<p>levis</p>
<p>ucb</p>
<p>+ many more</p>
</div>
<div id="webFooter">
<h3>Address</h3>
<p>Saintgits College of Engineering</p>
<p>Kottayam</p>
<p>686105</p>
<p>Kerala India</p>
</div>
</div>
<div id="credit">
<a href="https://github.com/memidhun/stackup-teamplate">
© SPOTLIGHT
</a>
    |    
<a href="" target="_blank"> SPOTLIGHT</a>
</div>
</section>
</footer>
</body>
</html>