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