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