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