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