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