Dashboard Temp Share Shortlinks Frames API

HTMLify

contact.html
Views: 28 | Author: karbonsites
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact Us - Nasir Hardwares</title>
    <link rel="stylesheet" href="./style.css">
    <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
    <header class="main-header">
        <nav class="navbar">
            <div class="logo">NASIR <span class="highlight">HARDWARES</span></div>
            <ul class="nav-links">
                <li><a href="index.html">Home</a></li>
                <li><a href="products.html">Products</a></li>
                <li><a href="services.html">Services</a></li>
                <li><a href="about.html">About Us</a></li>
                <li><a href="contact.html" class="cta-nav active">Get Quote</a></li>
            </ul>
            <div class="menu-toggle" id="menu-toggle">&#9776;</div>
        </nav>
    </header>

    <main>
        <section class="page-header" id="contact-hero">
            <div class="container">
                <h1 class="fade-in-up">Let's Build Something Strong</h1>
                <p class="fade-in-up delay-1">Submit your inquiry below, or reach out to us directly.</p>
            </div>
        </section>

        <section class="container section-padding">
            <div class="contact-layout grid-2-col">
                <div class="contact-info fade-in-scroll">
                    <h2>Get In Touch</h2>
                    <div class="info-block">
                        <span class="icon">&#128222;</span>
                        <h4>Call Us</h4>
                        <p>+1 (555) 123-4567 (Sales & Support)</p>
                    </div>
                    <div class="info-block">
                        <span class="icon">&#9993;</span>
                        <h4>Email Us</h4>
                        <p>inquiry@nasirhardware.com</p>
                    </div>
                    <div class="info-block">
                        <span class="icon">&#128205;</span>
                        <h4>Our Location</h4>
                        <p>10 Industrial Way, Sector G, Metropolis, 90210</p>
                    </div>
                </div>

                <div class="contact-form-container fade-in-scroll" data-delay="1">
                    <h3>Request a Detailed Quote</h3>
                    <form id="quote-form" class="contact-form">
                        <div class="form-group">
                            <label for="name">Your Name / Company</label>
                            <input type="text" id="name" name="name" required>
                        </div>
                        <div class="form-group">
                            <label for="email">Email Address</label>
                            <input type="email" id="email" name="email" required>
                        </div>
                        <div class="form-group">
                            <label for="project">Project Details / Required Parts (Include Part # if known)</label>
                            <textarea id="project" name="project" rows="5" required></textarea>
                        </div>
                        <div class="form-group">
                            <label for="urgency">Urgency</label>
                            <select id="urgency" name="urgency">
                                <option value="standard">Standard Lead Time</option>
                                <option value="expedited">Expedited (Rush Order)</option>
                            </select>
                        </div>
                        <button type="submit" class="btn btn-primary w-full">Submit Request</button>
                        <p id="form-message" style="margin-top: 15px; text-align: center;"></p>
                    </form>
                </div>
            </div>
        </section>
    </main>

    <footer class="main-footer">
        <div class="container footer-grid">
            <div class="footer-col">
                <h4>NASIR HARDWARES</h4>
                <p>Engineering the future of industry with quality and precision.</p>
            </div>
            <div class="footer-col">
                <h4>Quick Links</h4>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="products.html">Products</a></li>
                    <li><a href="services.html">Services</a></li>
                    <li><a href="about.html">Careers</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>Support</h4>
                <ul>
                    <li><a href="#">FAQ</a></li>
                    <li><a href="contact.html">Support Center</a></li>
                    <li><a href="#">Privacy Policy</a></li>
                </ul>
            </div>
            <div class="footer-col">
                <h4>Connect</h4>
                <p>Email: info@nasirhardware.com</p>
                <p>Phone: +1 (555) 123-4567</p>
            </div>
        </div>
        <div class="footer-bottom">
            &copy; 2024 Nasir Hardwares. All Rights Reserved.
        </div>
    </footer>

    <script src="./script.js"></script>
</body>
</html>