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