| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>News Website</title> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> | |
| <h1>📰 My News Website</h1> | |
| <div class="search-box"> | |
| <input type="text" id="search" placeholder="Search news..."> | |
| <button onclick="getNews()">Search</button> | |
| </div> | |
| <div id="news-container"></div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> |