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