Dashboard Temp Share Shortlinks Frames API

HTMLify

about.html
Views: 45 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About 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" class="active">About Us</a></li>
                <li><a href="contact.html" class="cta-nav">Get Quote</a></li>
            </ul>
            <div class="menu-toggle" id="menu-toggle">&#9776;</div>
        </nav>
    </header>

    <main>
        <section class="page-header" id="about-hero">
            <div class="container">
                <h1 class="fade-in-up">Forging Trust, Delivering Excellence</h1>
                <p class="fade-in-up delay-1">A legacy built on integrity, precision, and unwavering commitment to industrial partners.</p>
            </div>
        </section>

        <section class="container section-padding">
            <div class="about-content grid-2-col">
                <div class="fade-in-scroll">
                    <h2>Our Legacy</h2>
                    <p class="lead">Founded in 1995, Nasir Hardwares started as a small local supplier and has grown into a recognized national provider of mission-critical hardware. We bridge the gap between raw material suppliers and complex manufacturing needs.</p>
                    <p>Our philosophy is simple: Quality is not an act, it is a habit. This drives our investment in advanced machinery and continuous staff training.</p>
                </div>
                <div class="stats-panel fade-in-scroll" data-delay="1">
                    <h3>Key Milestones</h3>
                    <ul>
                        <li><span class="stat-number">29+</span> Years in Operation</li>
                        <li><span class="stat-number">1500+</span> Active Industrial Clients</li>
                        <li><span class="stat-number">50,000+</span> SKUs Managed Annually</li>
                        <li><span class="stat-number">ISO 9001</span> Certified Facility</li>
                    </ul>
                </div>
            </div>
        </section>

        <section class="team-section bg-dark-gray">
            <div class="container">
                <h2 class="text-center">Meet Our Leadership</h2>
                <div class="team-grid">
                    <div class="team-member fade-in-scroll">
                        <div class="avatar">N.A.</div>
                        <h4>Nasir Ahmed</h4>
                        <p>Founder & CEO</p>
                    </div>
                    <div class="team-member fade-in-scroll" data-delay="1">
                        <div class="avatar">S.K.</div>
                        <h4>Sara Khan</h4>
                        <p>Head of Engineering</p>
                    </div>
                    <div class="team-member fade-in-scroll" data-delay="2">
                        <div class="avatar">R.M.</div>
                        <h4>Ravi Menon</h4>
                        <p>Chief Operations Officer</p>
                    </div>
                </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" class="active">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>