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