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