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