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