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