-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHWS.html
More file actions
24 lines (20 loc) · 722 Bytes
/
HWS.html
File metadata and controls
24 lines (20 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Scraper</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>News Headline Scraper</h1>
<input type="text" id="urlInput" placeholder="Enter URL">
<button onclick="scrapeData()">Scrape Headlines</button>
</div>
<div id="loading" class="loading">Loading...</div>
<div id="dataContainer" class="hidden"></div>
<!-- Footer section -->
<footer>
<p>This Project is Created BY: IRFAN ULLAH KHAN | Copyright © 2024</p>
</footer>