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