1
+
1
2
<!DOCTYPE html>
2
3
< html lang ="en ">
3
4
< head >
4
5
< meta charset ="UTF-8 ">
5
6
< 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 >
7
9
< link rel ="stylesheet " href ="styles.css ">
8
10
</ head >
9
11
< body >
10
12
< 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
+
12
16
< 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 >
16
20
</ 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 >
17
42
</ div >
18
43
< script src ="app.js "> </ script >
19
44
</ body >
20
- </ html >
45
+ </ html >
0 commit comments