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