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