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