SEO Meta Tag Generator
function generateSEOTags() {
var title = document.getElementById('seo-title').value;
var desc = document.getElementById('seo-desc').value;
var keys = document.getElementById('seo-keys').value;
var output = ";
if (title) output += '
' + title + '\n';
if (desc) output += '\n';
if (keys) output += '\n';
output += '\n';
output += '\n';
output += ";
document.getElementById('seo-output').innerText = output;
document.getElementById('seo-result-container').style.display = 'block';
}
function copySEOTags() {
var text = document.getElementById('seo-output').innerText;
var elem = document.createElement('textarea');
document.body.appendChild(elem);
elem.value = text;
elem.select();
document.execCommand('copy');
document.body.removeChild(elem);
alert('Copied to clipboard!');
}