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