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