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