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