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