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