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