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