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