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