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