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