<!DOCTYPE html>
<html>
<head>
<title>Keyword Finder</title>
</head>
<body>
<p id="keywords">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Keywords: HTML, CSS, JavaScript.</p>
<script>
const paragraph = document.getElementById('keywords');
const text = paragraph.textContent;
const keywords = text.match(/Keywords: (.*)/)[1];
console.log(keywords);
</script>
</body>
</html>
Leave a Reply