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