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