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