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