-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfooter_old.html
120 lines (107 loc) · 3.8 KB
/
footer_old.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<style>
body {
margin: 0;
padding: 0;
background: rgba(0, 0, 0, .5);
>h1,
>p {
text-align: center;
a {
text-decoration: none;
color: #000000;
font-weight: bold;
}
}
}
.footer .one i {
font-size: 2em;
margin: 5px;
color: #fff;
transition: .5s;
}
.footer .two i {
font-size: 1.4em;
margin: 4px;
transform: translateY(5px) rotateY(180deg);
transition: .5s;
}
.footer h5 {
font-size: 1em;
color: #bbb;
padding-bottom: 10px;
}
.footer .two {
color: #fff;
}
.footer .two a {
margin-right: 20px;
font-size: 1.5em;
color: #fff;
}
.footer .one i:hover {
transform: rotateY(360deg);
color: #00baff;
}
.footer .two a:hover i {
transform: translateY(5px) rotateY(540deg);
color: #26cc3a;
}
@media(max-width: 550px) {
.footer .one i {
font-size: 1em;
margin: 5px;
}
.footer .two i {
font-size: .5em;
margin: 5px;
transform: translateY(0px) rotateY(180deg);
transition: .5s;
}
.footer h5 {
font-size: .6em;
padding-bottom: 10px;
}
.footer .two a {
margin-right: 10px;
font-size: 1em;
}
.footer .two a:hover i {
transform: translateY(0px) rotateY(540deg);
color: #26cc3a;
}
}
hr {
border-style: inset;
border-width: .6px;
border-color: rgba(0, 0, 0, .3);
}
</style>
</head>
<body>
<div class="footer">
<div class="container">
<div class="one d-flex flex-row justify-content-center">
<a href="https://www.facebook.com/nss.iitp/" target="_blank"><i class="fab fa-facebook-f m-2"></i></a>
<a href="https://twitter.com/nss_iitp" target="_blank"><i class="fab fa-twitter m-2"></i></a>
<a href="https://www.instagram.com/nss.iitp/" target="_blank"><i class="fab fa-instagram m-2"></i></a>
<a href="https://www.linkedin.com/company/nssiitp/" target="_blank"><i class="fab fa-linkedin m-2"></i></a>
<a href="https://www.youtube.com/channel/UCxuUcmz-ymAN_66Mb7HSVmg" target="_blank"><i class="fab fa-youtube m-2"></i></a>
</div>
<div class="two d-flex flex-row justify-content-center">
<a href="mailto:nss@iitp.ac.in"><i class="fas fa-envelope"></i>nss@iitp.ac.in</a>
<a href="tel:+917230989137"><i class="fas fa-phone"></i>+91-7230989137</a>
</div>
</div>
<div class="container">
<hr>
<h5 class="text-center">Copyright © All Rights Reserved || NSS IITP Web Dev Team</h5>
</div>
</div>
</body>
</html>