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