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