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