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