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