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