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