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