ID
jtra3xefy9rm80crn7ta9bv28r
Status
Succeeded
Source
Web
Hardware
CPU (Small)
Total duration
Created
Webhook

Input

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Sample Page</title> <style> body { font-family: Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; line-height: 1.6; } .highlight { background-color: #ffeb3b; padding: 2px 4px; } .card { border: 1px solid #ddd; border-radius: 8px; padding: 15px; margin: 10px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } </style> </head> <body> <header> <h1>Welcome to My Website</h1> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <main> <section id="home"> <h2>Home Section</h2> <p>This is a <span class="highlight">sample paragraph</span> with some text content.</p> <div class="card"> <h3>Featured Article</h3> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> <a href="#" class="btn">Read More</a> </div> </section> <section id="about"> <h2>About Us</h2> <img src="placeholder.jpg" alt="Company photo" width="300" height="200"> <p>We are a company dedicated to creating amazing web experiences.</p> <ul> <li>Quality service</li> <li>Customer satisfaction</li> <li>Innovation</li> </ul> </section> <section id="contact"> <h2>Contact Form</h2> <form action="#" method="POST"> <label for="name">Name:</label> <input type="text" id="name" name="name" required> <label for="email">Email:</label> <input type="email" id="email" name="email" required> <label for="message">Message:</label> <textarea id="message" name="message" rows="4" required></textarea> <button type="submit">Send Message</button> </form> </section> </main> <footer> <p>&copy; 2024 My Website. All rights reserved.</p> </footer> <script> document.querySelector('form').addEventListener('submit', function(e) { e.preventDefault(); alert('Form submitted! (This is just a demo)'); }); </script> </body> </html>
keep_links
false
base_url
Empty string
to_markdown
true

Output

# Welcome to My Website

## Home Section

This is a sample paragraph with some text content.

### Featured Article

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Read More

---

## About Us

![Company photo](placeholder.jpg)

We are a company dedicated to creating amazing web experiences.

- Quality service
- Customer satisfaction
- Innovation

---

## Contact Form

Name:
[text input]

Email:
[email input]

Message:
[textarea]

[Send Message]

---

© 2024 My Website. All rights reserved.
Generated in