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