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