<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tech Resurrect</title>
    <link rel="stylesheet" href="css/styles.css">
</head>
<body>
    <header>
        <h1>Welcome to Tech Resurrect</h1>
        <nav>
            <a href="#about">About</a>
            <a href="#services">Services</a>
            <a href="#contact">Contact</a>
        </nav>
    </header>
    <section id="about">
        <h2>About Us</h2>
        <p>Tech Resurrect is your go-to for bringing tech back to life!</p>
    </section>
    <section id="services">
        <h2>Our Services</h2>
        <ul>
            <li>Device Repair</li>
            <li>Data Recovery</li>
            <li>Custom Builds</li>
        </ul>
    </section>
    <section id="contact">
        <h2>Contact Us</h2>
        <form action="contact.php" 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>
            <input type="submit" value="Submit">
        </form>
    </section>
    <footer>
        <p>&copy; 2024 Tech Resurrect. All rights reserved.</p>
    </footer>
</body>
</html>
