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