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