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