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