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