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