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