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