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