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