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