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