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