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