About us page template html css​

Features of this About Us page: 1. Responsive Design: Works on mobile, tablet, and desktop 2. Clean Layout: Organized sections for story, team, and values 3. Interactive Elements: - Back-to-top button that appears when scrolling - Smooth animations for team members as they come into view - Hover effects on team member cards 4. Professional Appearance**: Modern color scheme and typography 5. Easy to Customize: Replace placeholder images and text with your own content To use this page: 1. Copy the entire code 2. Save it as `about.html` 3. Open in any web browser 4. Customize the text, images, and colors to match your brand You can replace the placeholder image URLs with your own images by changing the `src` attributes in the `` tags.

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>About Us</title> </head> <body> <header> <div class="container"> <h1>About Our Company</h1> <p class="subtitle">Learn more about who we are and what we stand for</p> </div> </header> <section class="about-section"> <div class="container"> <div class="about-content"> <div class="about-text"> <h2>Our Story</h2> <p>Founded in 2010, our company began as a small startup with a big vision. What started as a team of three people working out of a garage has grown into an industry-leading organization with over 200 employees worldwide.</p> <p>We're driven by innovation, quality, and a commitment to our customers. Every product we create and every service we offer is designed with our core values in mind.</p> <p>Today, we're proud to serve customers in over 50 countries while maintaining the same passion and dedication that fueled our humble beginnings.</p> </div> <div class="about-image"> <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Our team working together"> </div> </div> </div> </section> <section class="team-section"> <div class="container"> <h2>Meet Our Leadership</h2> <div class="team-members"> <div class="team-member"> <div class="member-image"> <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Sarah Johnson"> </div> <div class="member-info"> <h3>Sarah Johnson</h3> <p>CEO & Founder</p> </div> </div> <div class="team-member"> <div class="member-image"> <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Michael Chen"> </div> <div class="member-info"> <h3>Michael Chen</h3> <p>Chief Technology Officer</p> </div> </div> <div class="team-member"> <div class="member-image"> <img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=600&q=80" alt="Emily Rodriguez"> </div> <div class="member-info"> <h3>Emily Rodriguez</h3> <p>Chief Marketing Officer</p> </div> </div> </div> </div> </section> <section class="values-section"> <div class="container"> <h2>Our Core Values</h2> <div class="values-list"> <div class="value-card"> <div class="value-icon">✓</div> <h3>Integrity</h3> <p>We do the right thing, even when no one is watching. Honesty and transparency guide every decision we make.</p> </div> <div class="value-card"> <div class="value-icon">♻</div> <h3>Sustainability</h3> <p>We're committed to environmental responsibility and building solutions that stand the test of time.</p> </div> <div class="value-card"> <div class="value-icon">❤</div> <h3>Community</h3> <p>We believe in giving back and creating positive change in the communities where we live and work.</p> </div> <div class="value-card"> <div class="value-icon">⚡</div> <h3>Innovation</h3> <p>We embrace creativity and continuous improvement to deliver exceptional products and services.</p> </div> </div> </div> </section> <footer> <div class="container"> <p>© 2023 Our Company. All rights reserved.</p> </div> </footer> <div class="back-to-top" id="backToTop">↑</div> </body> </html>
CSS provides style to an HTML page. To make the page attractive create a CSS file with the name style.css and remember that you have to make a file with a .css extension.


/* CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        header {
            background-color: #2c3e50;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .about-section {
            padding: 4rem 0;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .team-section {
            background-color: white;
            padding: 4rem 0;
        }

        .team-members {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            width: 280px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            height: 200px;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-info {
            padding: 1.5rem;
        }

        .member-info h3 {
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .member-info p {
            color: #7f8c8d;
            font-style: italic;
        }

        .values-section {
            padding: 4rem 0;
        }

        .values-list {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .value-card {
            flex: 1;
            min-width: 250px;
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            text-align: center;
        }

        .value-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #3498db;
        }

        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 2rem;
        }

        .back-to-top {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #3498db;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            line-height: 50px;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 99;
        }

        .back-to-top:hover {
            background-color: #2980b9;
        }

        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            
            .team-member {
                width: 100%;
                max-width: 350px;
            }
        }
JavaScript makes the page work functionally. At last, create a JavaScript file with the name of script.js, and remember that you've got to make a file with a .js extension.


 // Back to top button functionality
        const backToTopButton = document.getElementById('backToTop');
        
        window.addEventListener('scroll', () => {
            if (window.pageYOffset > 300) {
                backToTopButton.style.display = 'block';
            } else {
                backToTopButton.style.display = 'none';
            }
        });
        
        backToTopButton.addEventListener('click', () => {
            window.scrollTo({
                top: 0,
                behavior: 'smooth'
            });
        });

        // Simple animation for team members when they come into view
        const teamMembers = document.querySelectorAll('.team-member');
        
        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    entry.target.style.opacity = 1;
                    entry.target.style.transform = 'translateY(0)';
                }
            });
        }, { threshold: 0.1 });
        
        teamMembers.forEach(member => {
            member.style.opacity = 0;
            member.style.transform = 'translateY(20px)';
            member.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
            observer.observe(member);
        });

Thank you
Learning robo team

Post a Comment

Thank you
Learning robo team

Post a Comment (0)

Previous Post Next Post
Learning Robo says...
code copied
Welcome