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