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