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