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