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