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