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