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