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