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