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