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