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