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