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