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