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