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