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