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