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