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