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