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