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