| <html> | |
| <head> | |
| <!-- Favicons --> | |
| <link rel="icon" type="image/png" sizes="48x48" href="https://lovnishverma.in/favicon-48.png"> | |
| <link rel="icon" type="image/png" sizes="192x192" href="https://lovnishverma.in/android-chrome-192x192.png"> | |
| <link rel="apple-touch-icon" href="https://lovnishverma.in/apple-touch-icon.png"> | |
| <link rel="shortcut icon" href="https://lovnishverma.in/favicon.ico"> | |
| <title>Web Scraper</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| background-color: #f9f9f9; | |
| text-align: center; | |
| } | |
| .logo { | |
| margin-top: 30px; | |
| width: 128px; | |
| height: 128px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <img src="https://www.nielit.gov.in/images/NIELIT_logo.jpg" | |
| alt="Logo" class="logo"> | |
| <h1>Customizable Web Scraper</h1> | |
| <form action="/scrape" method="POST"> | |
| <label for="url">Enter URL:</label><br> | |
| <input type="text" id="url" name="url" placeholder="https://example.com" required><br><br> | |
| <label for="tag">Enter Tag to Scrape (e.g., p, h1, img):</label><br> | |
| <input type="text" id="tag" name="tag" placeholder="p" required><br><br> | |
| <button type="submit">Scrape</button> | |
| </form> | |
| </body> | |
| </html> | |