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