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