html
<!DOCTYPE html> <html> <head> <title>Article Rewriter Tool</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="container"> <h1>Article Rewriter Tool</h1> <textarea id="originalText" placeholder="Enter your text here..." rows="10"></textarea> <button id="rewriteBtn" onclick="rewriteArticle()">Rewrite</button> <textarea id="rewrittenText" placeholder="Rewritten text will appear here..." rows="10" readonly></textarea> </div> <script src="script.js"></script> </body> </html>