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