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