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