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