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