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