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