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