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