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