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