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