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