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