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