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