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