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