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