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