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