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