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