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