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