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