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