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