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