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