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