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