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