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