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