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