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