home04_3.html 265 B

12345678910111213141516
  1. <head>
  2. <h1>
  3. <head>
  4. <h1>Capitalize</h1>
  5. </head>
  6. <body>
  7. <script>
  8. let str = prompt("Enter a string").toLowerCase();
  9. str = str[0].toUpperCase() + str.slice(1);
  10. alert(str);
  11. </script>
  12. </body>
  13. </h1>
  14. </head>