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