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