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