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