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