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