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