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