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