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