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