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