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