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