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