forked from GTAjam/gta-web
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
56 lines (51 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>CLUB</h4>
<ul>
<li><a href="#">about us</a></li>
<li><a href="#">Our services</a></li>
<li><a href="#">privacy policy</a></li>
<li><a href="#">terms of service</a></li>
</ul>
</div>
<div class="footer-col">
<h4>GET HELP</h4>
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Club benefits</a></li>
</ul>
</div>
<div class="footer-col">
<h4>KNOW MORE ABOUT CLUB</h4>
<ul>
<li><a href="#">Game dev team</a></li>
<li><a href="#">Web dev team</a></li>
<li><a href="#">Coding team</a></li>
</ul>
</div>
<div class="footer-col">
<h4>FOLLOW US</h4>
<div class="social-links">
<a href="#"><i class="facebook"></i></a>
<a href="#"><i class="Twitter"></i></a>
<a href="#"><i class="instgram"></i></a>
<a href="#"><i class="linkdln"></i></a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>