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