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