-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTesting.html
More file actions
76 lines (67 loc) · 1.72 KB
/
Testing.html
File metadata and controls
76 lines (67 loc) · 1.72 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.footer {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
color: #fff;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
.footer p {
margin: 0;
}
.footer-left {
text-align: center;
flex: 1;
}
.footer-right {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
}
.footer-right a {
margin: 0 10px;
color: #fff;
font-size: 20px;
}
@media (max-width: 768px) {
.footer {
flex-direction: column;
align-items: center;
padding: 15px 0;
}
.footer-left {
order: 1; /* Moves to bottom */
margin-bottom: 10px;
}
.footer-right {
order: 2; /* Moves to top */
}
}
</style>
</head>
<body>
<footer class="footer">
<div class="footer-left">
<p>© All Rights Reserved Mohammad Shahabuddin</p>
</div>
<div class="footer-right">
<a href="https://github.com/yourusername" target="_blank"><ion-icon name="logo-github"></ion-icon></a>
<a href="https://linkedin.com/in/yourprofile" target="_blank"><ion-icon name="logo-linkedin"></ion-icon></a>
<a href="https://twitter.com/yourusername" target="_blank"><ion-icon name="logo-twitter"></ion-icon></a>
</div>
</footer>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</body>
</html>