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