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