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