14 lines
190 B
Plaintext
14 lines
190 B
Plaintext
|
|
---
|
||
|
|
const today = new Date();
|
||
|
|
---
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
© {today.getFullYear()} YOUR NAME HERE. All rights reserved.
|
||
|
|
</footer>
|
||
|
|
<style>
|
||
|
|
footer {
|
||
|
|
padding: 25px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
</style>
|