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