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