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