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