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