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