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