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