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