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