-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
40 lines (40 loc) · 949 Bytes
/
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
<html>
<head>
<style>
.footer{
background-color: black;
height: auto;
width: 100%;
margin-top: 30px;
padding:5px;
}
.footer p{
margin:20px;
color: white;
text-align: center;
font-size: 18px;
}
.footer p a{
color: white;
}
.footer p a:hover{
color: yellow;
text-decoration: none;
}
@media(max-width : 600px)
{
.footer p{
font-size: 15px;
}
}
</style>
</head>
<body>
<!-- Footer start -->
<div class="footer">
<p> © Designed By <a href="https://www.linkedin.com/in/ritika-dey/" target="_blank">
<b>Ritika Dey</b></a> || The Sparks Foundation || GRIP </p>
</div>
<!-- Footer end -->
</body>
</html>