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