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