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