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