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