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