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