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