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