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