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