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