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