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