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