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