Website Title Generator
Generated Title:
Waiting for title...
function generateTitle() { const keywordsInput = document.getElementById('keywords'); const generatedTitle = document.getElementById('generatedTitle'); const keywords = keywordsInput.value.trim().split(/\s*,\s*/); if (keywords.length === 0) { generatedTitle.textContent = "Please enter at least one keyword."; return; } // You can customize the title generation logic here. For simplicity, we'll just join the keywords with a space. const title = keywords.join(' '); generatedTitle.textContent = title; } function generateTitle() { const keywordsInput = document.getElementById('keywords'); const generatedTitle = document.getElementById('generatedTitle'); const keywords = keywordsInput.value.trim().split(/\s*,\s*/); if (keywords.length === 0) { generatedTitle.textContent = "Please enter at least one keyword."; return; } // You can customize the title generation logic here. For simplicity, we'll just join the keywords with a space. const title = keywords.join(' '); generatedTitle.textContent = "Generated Title: " + title; }
Comments
Post a Comment