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