Hi @Dave_Birnie. Of course. 
Here’s a read-only link to my site: Webflow - Rasmus' Portfolio Site
Here’s the custom code I added to the Footer code:
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.11"></script>
<script>
var typed = new Typed('.typed-text', {
strings: ['pixel-perfect', 'product', 'interaction', 'UX', 'digital', 'UI'],
typeSpeed: 45,
backSpeed: 20,
loop: true,
showCursor: true,
cursorChar: '|',
backDelay: 1300,
startDelay: 0
});
</script>
In the above code “.typed-text” is a reference to the class called “typed-text” located in the Hero Content Div as seen in the below picture. The “typed-text” class is actually just a span inside the paragraph subtitle, in which I deleted all the text, so that no text is present before the script starts running.
I have no idea why, but for some reason there seems to be a bug in which it skips the first string in the array. As you can see on rasmusdesign.webflow.io, ‘pixel-perfect’ is not present on the site. Also, it is worth noting that you have to publish the site to see it in action. Preview doesn’t work for this.
Hope this helps.
PS. If anyone knows why it’s skipping the first string, please let me know.
/Rasmus