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