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