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