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