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