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