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