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