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