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