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