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