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