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