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