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