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