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