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