aass / index.html
abeea's picture
Update index.html
10a54c1 verified
raw
history blame contribute delete
447 Bytes
<!DOCTYPE html>
<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>