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