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