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