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