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