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