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