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