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