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