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