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