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