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