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