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