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