-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter.html
174 lines (154 loc) · 4.11 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!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: 10px 0 0 0;
background: white;
}
.footer .one i {
font-size: 2em;
margin: 15px;
color: black;
transition: 0.5s;
}
.footer .two i {
font-size: 1.4em;
margin: 4px;
transform: translateY(5px) rotateY(180deg);
transition: 0.5s;
}
.footer h5 {
font-size: 1em;
color: #bbb;
padding-bottom: 10px;
}
.footer .two {
color: black;
}
.footer .two a {
margin: 4px 20px 10px 0;
font-size: 1.2em;
color: black;
}
.footer .one i:hover {
transform: rotateY(360deg);
color: #f23a2e;
}
.footer .two a:hover i {
transform: translateY(5px) rotateY(540deg);
color: #f23a2e;
}
.cprgt {
font-size: 14px;
}
@media (max-width: 550px) {
.footer .one i {
font-size: 1em;
margin: 15px !important;
color: black;
transition: 0.5s;
}
.footer .two i {
font-size: 0.5em;
margin: 5px;
transform: translateY(0px) rotateY(180deg);
transition: 0.5s;
}
.footer h5 {
font-size: 0.6em;
padding-bottom: 10px;
}
.footer .two a {
margin-right: 20px;
font-size: 1.2em;
color: black;
}
.footer .one i:hover {
transform: rotateY(360deg);
color: #f23a2e;
margin-right: 10px;
font-size: 1em;
}
.footer .two a:hover i {
transform: translateY(5px) rotateY(540deg);
color: #f23a2e;
}
.cprgt {
font-size: 14px;
}
@media (max-width: 550px) {
.footer .one i {
font-size: 1em;
margin: 5px;
}
.footer .two i {
font-size: 0.5em;
margin: 5px;
transform: translateY(0px) rotateY(180deg);
transition: 0.5s;
}
.footer h5 {
font-size: 0.6em;
padding-bottom: 10px;
}
.footer .two a {
margin-right: 10px;
font-size: 1em;
}
.footer .two a:hover i {
transform: translateY(0px) rotateY(540deg);
color: #f23a2e;
}
.cprgt {
font-size: .7em;
}
}
hr {
border-style: inset;
border-width: 0.6px;
border-color: #ddd;
}
</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/tedxiitpatna/" target="_blank"
><i class="fab fa-facebook-f"></i
></a>
<a href="https://www.instagram.com/tedxiitpatna/" target="_blank"
><i class="fab fa-instagram"></i
></a>
<a
href="https://www.linkedin.com/company/tedxiitpatna/"
target="_blank"
><i class="fab fa-linkedin"></i
></a>
<a href=" https://twitter.com/TEDxIITPatna" target="_blank"
><i class="fab fa-twitter"></i
></a>
</div>
<div class="two d-flex flex-row justify-content-center">
<a href="mailto:[email protected]"
><i class="fas fa-envelope"></i>[email protected]</a
>
</div>
</div>
</div>
<div class="container">
<hr />
<h5 class="text-center cprgt" style="color: black;font-weight: normal;">
<div style="letter-spacing: 0.5px">This Independent TEDx Event Is Operated Under License From TED | Copyright © 2021 All Rights Reserved</div>
</h5>
</div>
</div>
</body>
</html>