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