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