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