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