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