Skip to content

Commit 9b65557

Browse files
authored
# UI improvements and data visualization enhancements
1 parent 3c3a7ff commit 9b65557

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

index.html

+31-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,45 @@
1+
12
<!DOCTYPE html>
23
<html lang="en">
34
<head>
45
<meta charset="UTF-8">
56
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Web Scraper</title>
7+
<meta name="description" content="DataDigger - A tool for extracting and analyzing data from web pages">
8+
<title>DataDigger - Web Scraper</title>
79
<link rel="stylesheet" href="styles.css">
810
</head>
911
<body>
1012
<div class="container">
11-
<h1>Web Scraper Interface</h1>
13+
<h1>DataDigger</h1>
14+
<p class="subtitle">Powerful tool for extracting structured data from web pages</p>
15+
1216
<form id="scrapeForm">
13-
<label for="url">Enter URL:</label>
14-
<input type="text" id="url" name="url" required>
15-
<button type="submit">Scrape</button>
17+
<label for="url">Enter the URL of the website:</label>
18+
<input type="text" id="url" name="url" placeholder="e.g., https://example.com" required>
19+
<button type="submit">Extract Data</button>
1620
</form>
21+
22+
<div class="instructions">
23+
<h3>How to use:</h3>
24+
<ol>
25+
<li>Enter the URL of the web page</li>
26+
<li>Click "Extract Data"</li>
27+
<li>An Excel file with structured data will be automatically created and downloaded</li>
28+
<li>Results will also be displayed below</li>
29+
</ol>
30+
</div>
31+
32+
<div class="features">
33+
<h3>Features:</h3>
34+
<ul>
35+
<li>Extracts page metadata, titles, headings, and paragraphs</li>
36+
<li>Captures lists, links, images, and tables</li>
37+
<li>Organizes content by type and HTML tag</li>
38+
<li>Exports data in a structured Excel format</li>
39+
<li>Shows preview of extracted content directly on the page</li>
40+
</ul>
41+
</div>
1742
</div>
1843
<script src="app.js"></script>
1944
</body>
20-
</html>
45+
</html>

0 commit comments

Comments
 (0)