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