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