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