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