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