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