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