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