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