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