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