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