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