Use on the webTotal Use [ 6007 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/3e872676280c3c98c94a4131b7b35ebf?family=Audrina+Signature" 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/3e872676280c3c98c94a4131b7b35ebf?family=Audrina+Signature);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Audrina Signature";
src: url("https://db.onlinewebfonts.com/t/3e872676280c3c98c94a4131b7b35ebf.eot");
src: url("https://db.onlinewebfonts.com/t/3e872676280c3c98c94a4131b7b35ebf.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/3e872676280c3c98c94a4131b7b35ebf.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/3e872676280c3c98c94a4131b7b35ebf.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/3e872676280c3c98c94a4131b7b35ebf.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/3e872676280c3c98c94a4131b7b35ebf.svg#Audrina Signature")format("svg");
}
2CSS rules to specify fonts
font-family: "Audrina Signature";