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