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