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