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