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