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