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