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