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