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