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