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