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