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