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