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