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