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