Use on the webTotal Use [ 4495 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/aeb2073a2a9f53f6859dfbabc64df4eb?family=Willynta+Script" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/aeb2073a2a9f53f6859dfbabc64df4eb?family=Willynta+Script);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Willynta Script";
src: url("https://db.onlinewebfonts.com/t/aeb2073a2a9f53f6859dfbabc64df4eb.eot");
src: url("https://db.onlinewebfonts.com/t/aeb2073a2a9f53f6859dfbabc64df4eb.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/aeb2073a2a9f53f6859dfbabc64df4eb.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/aeb2073a2a9f53f6859dfbabc64df4eb.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/aeb2073a2a9f53f6859dfbabc64df4eb.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/aeb2073a2a9f53f6859dfbabc64df4eb.svg#Willynta Script")format("svg");
}
2CSS rules to specify fonts
font-family: "Willynta Script";