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