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