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