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