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