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