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