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