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