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