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