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