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