Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

<title>AI Song Lyrics Generator</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; }
.container {
  max-width: 800px;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

h1 {
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #218838;
}

#output {
  margin-top: 20px;
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 4px;
  min-height: 100px;
}
</style>

AI Song Lyrics Generator

Enter Song Theme:

Generate Song Lyrics

Generated lyrics will appear here...

<script> document.getElementById('generateBtn').addEventListener('click', function() { const theme = document.getElementById('theme').value; // Mock AI lyric generation for the frontend // In a real-world app, you would call an API (e.g., OpenAI API) to generate the lyrics. let lyrics = "Here are some AI-generated lyrics based on the theme: " + theme + "\n"; lyrics += "\nChorus:\nLife is tough, but we keep moving\nLove is rough, but we're still grooving\n"; document.getElementById('output').innerText = lyrics; }); </script>

About

Gold is old

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors