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