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