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