We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec3424 commit d180875Copy full SHA for d180875
JS/index.js
@@ -40,3 +40,7 @@ async function fetchData() {
40
setTimeout(() => {
41
fetchData();
42
}, 1000);
43
+
44
+const d=new Date();
45
+let year=d.getFullYear();
46
+document.querySelector(".year").innerHTML=year;
index.html
@@ -1968,7 +1968,7 @@ <h3 class="contact-footer mt-5">Contact</h3>
1968
<div class="row">
1969
<div class="col-md-12">
1970
<div class="copyright-content">
1971
- <p>Copyright © 2022 <a rel="nofollow" href="#">CodeIN Community</a> All Right Reserved</p>
+ <p>Copyright © <span class="year"></span> <a rel="nofollow" href="#">CodeIN Community</a> All Right Reserved</p>
1972
</div>
1973
1974
0 commit comments