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