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