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