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