Sign Your Development Within the Code

Ciao everyone! Wanted to share a quick tip I finally figured out this week for how to sign your development within the code. I always see signatures within the code of custom websites like the example below.

However, in Webflow I always was able to comment and add a signature to the top of the head or body tag, but it was never at the absolute top of the code. Until I found this string below for appending directly to the top. Just paste this into your Footer Code in project settings and put whatever text you want within the quotations.

<script>
var c = document.createComment("Site Developed by Jaytel Provence — www.jaytel.com");
document.prepend(c);
</script>

Cheers!

2 Likes