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