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