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