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