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