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