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