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