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