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