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