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