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