forked from yuktabagdi/sac-revamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
153 lines (124 loc) · 3.95 KB
/
footer.php
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
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Students' Alumni Cell, IIT Kharagpur</title>
<!-- Bootstrap Scripts CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Bootstrap scripts Jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous">
</script>
<!-- Font Awesome -->
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<style>
* {
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
width: 100%;
}
#footer {
background-color: #23232b;
height: 19rem;
}
.footer-top-left {
height: 12rem;
background-image: linear-gradient(to bottom right, #283949, #342b2d);
color: white;
padding-top: 1.8rem;
}
.footer-top-right {
padding: 1.8rem;
color: #eef0ef;
}
.dots {
font-size: 2em;
position: relative;
bottom: 2.5rem;
}
.bar {
font-size: 3em;
color: white;
position: absolute;
top: -2.8rem;
left: 2rem;
}
@media(max-width:768px){
.icon{
font-size:1em;
padding:0;}}
.icon {
font-size: 2em;
color: white;
position: absolute;
top: -1rem;
}
#copyright {
background-color: black;
text-align: center;
color: grey;
}
</style>
</head>
<body>
<section id='footer'>
<div class='container-fluid'>
<div class='row'>
<div class='col-4 footer-top-left'>
<h1> Get Social <br>With Us<br><span class='dots'>...</span>
</h1>
</div>
<div class="col-2">
</div>
<div class='col-6 footer-top-right'>
<h5>Students' Alumni Cell, IIT Kharagpur</h5>
<p>Office of Alumni Affairs & International Relations,<br>
Indian Institute of Technology, Kharagpur<br>
Pin-721302, West Bengal, India<br><br>
<em>Ph: 03222-281860</em> <br>
<em>Email: aao@hijli.iitkgp.ernet.in</em>
</p>
<hr>
</div>
</div>
<div class='row'>
<div class='col-2 '>
<span class='bar'>|</span>
</div>
<div class="col-2">
<i class="icon fab fa-facebook"></i>
</div>
<div class='col-2'>
<i class="icon fab fa-instagram"></i>
</div>
<div class='col-2'>
<i class="icon fab fa-twitter-square"></i>
</div>
<div class='col-2'>
<i class="icon fab fa-medium"></i>
</div>
<div class='col-2'>
<i class="icon fab fa-linkedin"></i>
</div>
</div>
</div>
<!-- Footer end -->
<!-- Copyright -->
</section>
<section id='copyright'>
<p>© 2020 Students' Alumni Cell</p>
</section>
</body>
</html>