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