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