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