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