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