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