Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 40 | 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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Nasir Hardwares - Industrial Solutions</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" class="active">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">Get Quote</a></li>
            </ul>
            <div class="menu-toggle" id="menu-toggle">&#9776;</div>
        </nav>
    </header>

    <main>
        <section class="hero" id="hero">
            <div class="hero-content">
                <h1 class="fade-in-up">Precision Engineered. Built to Last.</h1>
                <p class="fade-in-up delay-1">Your trusted partner for high-grade industrial components and hardware solutions since 1995.</p>
                <a href="products.html" class="btn btn-primary fade-in-up delay-2">Explore Catalog</a>
            </div>
        </section>

        <section class="features container section-padding">
            <h2>Our Core Strengths</h2>
            <div class="bento-grid">
                <div class="bento-item fade-in-scroll" data-delay="0">
                    <h3>Quality Assurance</h3>
                    <p>Rigorous testing ensures every piece meets international standards.</p>
                    <span class="icon">&#10004;</span>
                </div>
                <div class="bento-item fade-in-scroll" data-delay="1">
                    <h3>Vast Inventory</h3>
                    <p>Access to thousands of parts, ready for immediate dispatch.</p>
                    <span class="icon">&#128200;</span>
                </div>
                <div class="bento-item fade-in-scroll" data-delay="2">
                    <h3>Custom Fabrication</h3>
                    <p>Bespoke solutions tailored to your unique industrial demands.</p>
                    <span class="icon">&#9881;</span>
                </div>
                <div class="bento-item large-item fade-in-scroll" data-delay="3">
                    <h3>Industrial Supply Chain</h3>
                    <p>Reliable logistics network ensuring timely global delivery.</p>
                    <span class="icon">&#128640;</span>
                </div>
            </div>
        </section>

        <section class="cta-banner">
            <div class="container">
                <h2>Need a specific component?</h2>
                <p>Talk to our expert engineers today for a tailored consultation.</p>
                <a href="contact.html" class="btn btn-secondary">Contact Sales Team</a>
            </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>