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