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