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