Last active
June 10, 2023 12:12
-
-
Save RR-Helpdesk/ab9496e95c74a89c81665dd58eff8f49 to your computer and use it in GitHub Desktop.
Webflow #webflow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this code as an HTML embed in your footer: | |
<div class="paragraph">© Company Name <script>document.write(new Date().getFullYear())</script>. All Rights Reserved.</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here's the code to put before the </body> tag: | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.10/typed.min.js"></script> | |
<script> | |
var typed = new Typed(".typed-words", { | |
strings: ["Sentence 1", "Sentence 2", "Sentence 3"], | |
typeSpeed: 80, | |
backSpeed: 40, | |
backDelay: 2000, | |
startDelay: 500, | |
loop: true, | |
showCursor: false, | |
cursorChar: "|", | |
attr: null, | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment