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