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