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