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