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