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