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