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