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