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