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