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