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