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