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