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