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