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