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