-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
78 lines (71 loc) · 3.06 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
<head>
<title>Top 30 Thesis, Research Topic in Computer Science - Best Topics</title>
<meta name="description" content="Find the best topics for your thesis or research project in computer science. Get inspired by our list of the top 30 topics, including AI, machine learning, cybersecurity, and more.">
<meta name="keywords" content="thesis topics, research topics, computer science, AI, machine learning, cybersecurity">
<!--font awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<footer class="bg-dark text-white py-3 ">
<div class="container">
<div class="row ">
<div class="col-4 text-center">
<h5>Thesis and Research</h5>
<a href="https://github.com/IKSopnil" target="_blank"><p>IKSopnil,</p></a>
<p>Computer Science and Engineering</p>
<p>roarmode@gmail.com</p>
<p>2023</p>
<p id="fyi-link" style="cursor: pointer; color: blue">FYI</p>
<p id="fyi-message" style="display: none;">This site is updated.</p>
</div>
<div class="col-4 text-center">
<h5 class="mb-5">Red pill or Blue pill</h5>
<a class="red-button" target="_blank" href="https://amzn.to/3OIwQW4"></a>
<a class="blue-button" target="_blank" href="https://amzn.to/3OIwQW4"></a>
</div>
<style>
.red-button, .blue-button {
display: inline-block;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 20px;
font-weight: bold;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.red-button:hover, .blue-button:hover {
display: inline-block;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 20px;
font-weight: bold;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
transform: scale(1.2, 1.2);
transition: .5s;
}
.red-button {
background-color: red;
}
.blue-button {
background-color: blue;
}
</style>
<div class="col-4 text-center">
<h5>Follow Us</h5>
<ul class="list-inline mt-4">
<li><a href="https://bmc.link/iksopnil" target="_blank">Support Developer</a></li>
<li class="list-inline-item my-2"><a href="https://www.facebook.com/ibrahimkhalil.sopnil" target="_blank"><i class="fab fa-facebook"></i></a></li><br>
<li class="list-inline-item my-2"><a href="https://www.instagram.com/ik_sopnil/" target="_blank"><i class="fab fa-instagram"></i></a></li><br>
<li class="list-inline-item my-2"><a href="https://www.linkedin.com/in/ibrahim-khalil-sopnil-01892a261" target="_blank"><i class="fab fa-linkedin-in"></i></a></li><br>
</ul>
</div>
</div>
</div>
</footer>
<script>
const fyiLink = document.getElementById("fyi-link");
const fyiMessage = document.getElementById("fyi-message");
fyiLink.addEventListener("click", () => {
fyiMessage.style.display = fyiMessage.style.display === "none" ? "block" : "none";
});
</script>