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