Transparent Fonts with Stroke

Hello.

Managed to find a solution. I used the html embed feature

<div><h2 class="headerH2">THE STUDIO</h2></div>

<style type="text/css">
.headerH2 {
	 font-size: 45px;
   line-height: 50px;
   margin-top: 10px;
   margin-bottom: 20px;
   color: transparent;
   -webkit-text-fill-color: transparent;
   -webkit-text-stroke-width: 2px;
   -webkit-text-stroke-color: #6BACC2;
}
</style>
1 Like