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