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