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