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