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