| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>SPEEDIO R650X1 - Brother</title> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; |
| color: #333; |
| line-height: 1.5; |
| } |
| |
| |
| .header { |
| background-color: #0d3cb8; |
| padding: 10px 20px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| |
| .logo { |
| display: flex; |
| flex-direction: column; |
| align-items: flex-start; |
| color: white; |
| } |
| |
| .logo .brand { |
| font-size: 24px; |
| font-weight: bold; |
| line-height: 1; |
| } |
| |
| .logo .tagline { |
| font-size: 8px; |
| line-height: 1; |
| opacity: 0.8; |
| } |
| |
| .logo img { |
| height: 30px; |
| } |
| |
| .header-right { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
| |
| .language-select { |
| background: white; |
| border: 1px solid #ccc; |
| padding: 5px 10px; |
| font-size: 13px; |
| border-radius: 3px; |
| } |
| |
| .search-btn { |
| color: white; |
| cursor: pointer; |
| display: flex; |
| align-items: center; |
| gap: 5px; |
| font-size: 14px; |
| } |
| |
| .search-btn img { |
| width: 16px; |
| height: 16px; |
| } |
| |
| .hamburger { |
| display: none; |
| color: white; |
| font-size: 20px; |
| cursor: pointer; |
| } |
| |
| .hamburger img { |
| width: 20px; |
| height: 20px; |
| } |
| |
| .nav.mobile-hidden { |
| display: none; |
| } |
| |
| |
| .nav { |
| background: white; |
| padding: 10px 20px; |
| border-bottom: 1px solid #eee; |
| } |
| |
| .nav ul { |
| display: flex; |
| list-style: none; |
| gap: 30px; |
| flex-wrap: wrap; |
| } |
| |
| .nav a { |
| text-decoration: none; |
| color: #333; |
| font-size: 14px; |
| } |
| |
| .nav a:hover { |
| color: #0d3cb8; |
| } |
| |
| .nav .dropdown-arrow { |
| font-size: 8px; |
| margin-left: 4px; |
| } |
| |
| |
| .breadcrumb { |
| background: #f0f5ff; |
| padding: 8px 20px; |
| font-size: 13px; |
| } |
| |
| .breadcrumb span { |
| color: #0d3cb8; |
| } |
| |
| |
| .product-header { |
| padding: 20px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| flex-wrap: wrap; |
| gap: 15px; |
| } |
| |
| .product-title { |
| font-size: 24px; |
| font-weight: bold; |
| } |
| |
| .compare-box { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
| |
| .contact-btn { |
| background: #0d3cb8; |
| color: white; |
| border: none; |
| padding: 10px 20px; |
| border-radius: 20px; |
| font-size: 16px; |
| cursor: pointer; |
| } |
| |
| |
| .main-content { |
| display: flex; |
| padding: 20px; |
| gap: 20px; |
| flex-wrap: wrap; |
| } |
| |
| .product-gallery { |
| width: 100px; |
| flex-shrink: 0; |
| } |
| |
| .product-gallery-mobile { |
| display: none; |
| } |
| |
| .gallery-nav { |
| display: flex; |
| flex-direction: column; |
| align-items: center; |
| gap: 10px; |
| } |
| |
| .gallery-nav button { |
| background: white; |
| border: 1px solid #ddd; |
| width: 32px; |
| height: 32px; |
| border-radius: 50%; |
| cursor: pointer; |
| font-size: 14px; |
| color: #666; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| .gallery-nav.horizontal { |
| flex-direction: row; |
| align-items: center; |
| } |
| |
| .gallery-nav.horizontal button { |
| border-radius: 50%; |
| } |
| |
| .gallery-images { |
| display: flex; |
| flex-direction: column; |
| gap: 10px; |
| } |
| |
| .gallery-item { |
| width: 70px; |
| height: 70px; |
| border: 1px solid #ddd; |
| border-radius: 3px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| background: white; |
| cursor: pointer; |
| overflow: hidden; |
| } |
| |
| .gallery-item.active { |
| border-color: #0d3cb8; |
| } |
| |
| .gallery-item img { |
| max-width: 100%; |
| max-height: 100%; |
| object-fit: cover; |
| } |
| |
| .main-image-container { |
| flex: 1; |
| min-width: 400px; |
| background: #f5f5f5; |
| padding: 15px; |
| border-radius: 5px; |
| position: relative; |
| min-height: 400px; |
| } |
| |
| .discontinued-badge { |
| background: #8e24aa; |
| color: white; |
| padding: 8px 12px; |
| font-size: 15px; |
| display: inline-block; |
| margin-bottom: 10px; |
| position: relative; |
| z-index: 1; |
| } |
| |
| .discontinued-badge::after { |
| content: ''; |
| position: absolute; |
| top: 0; |
| right: -10px; |
| width: 10px; |
| height: 100%; |
| background: #f5f5f5; |
| z-index: -1; |
| transform: skewX(-45deg); |
| } |
| |
| .main-image-content { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| height: 100%; |
| } |
| |
| .main-image-content img { |
| max-width: 100%; |
| height: auto; |
| } |
| |
| .zoom-icon { |
| position: absolute; |
| bottom: 15px; |
| right: 15px; |
| color: #0d3cb8; |
| font-size: 24px; |
| cursor: pointer; |
| } |
| |
| .product-info { |
| padding: 0 20px; |
| flex: 1; |
| min-width: 350px; |
| } |
| |
| .product-info h1 { |
| font-size: 24px; |
| margin-bottom: 10px; |
| } |
| |
| .product-info h2 { |
| font-size: 18px; |
| margin-bottom: 5px; |
| font-weight: normal; |
| } |
| |
| .product-info .tags { |
| font-size: 14px; |
| color: #666; |
| margin-bottom: 15px; |
| } |
| |
| .product-info .tags span { |
| margin-right: 10px; |
| } |
| |
| .action-buttons { |
| display: flex; |
| gap: 15px; |
| margin-bottom: 15px; |
| align-items: center; |
| flex-wrap: wrap; |
| } |
| |
| .action-btn { |
| background: white; |
| border: 1px solid #0d3cb8; |
| color: #0d3cb8; |
| padding: 8px 16px; |
| border-radius: 20px; |
| text-decoration: none; |
| font-size: 14px; |
| display: flex; |
| align-items: center; |
| gap: 5px; |
| } |
| |
| .action-btn:hover { |
| background: #0d3cb8; |
| color: white; |
| } |
| |
| .print-btn { |
| color: #0d3cb8; |
| cursor: pointer; |
| display: flex; |
| align-items: center; |
| gap: 5px; |
| font-size: 14px; |
| padding: 8px 16px; |
| border: none; |
| background: none; |
| } |
| |
| .specs { |
| margin-bottom: 20px; |
| } |
| |
| .specs ul { |
| list-style: disc; |
| padding-left: 20px; |
| color: #333; |
| } |
| |
| .specs li { |
| margin-bottom: 8px; |
| } |
| |
| .description { |
| color: #333; |
| line-height: 1.4; |
| } |
| |
| |
| .information { |
| background: white; |
| padding: 30px 20px; |
| } |
| |
| .information h2 { |
| text-align: center; |
| margin-bottom: 20px; |
| font-size: 28px; |
| } |
| |
| .info-tabs { |
| display: flex; |
| justify-content: center; |
| gap: 10px; |
| margin-bottom: 20px; |
| flex-wrap: wrap; |
| } |
| |
| .info-tab { |
| padding: 8px 16px; |
| border: 1px solid #0d3cb8; |
| background: white; |
| color: #0d3cb8; |
| cursor: pointer; |
| border-radius: 3px; |
| font-size: 14px; |
| } |
| |
| .info-tab.active { |
| background: white; |
| color: #0d3cb8; |
| } |
| |
| .info-cards { |
| max-width: 800px; |
| margin: 0 auto; |
| } |
| |
| .info-card { |
| background: #f5f5f5; |
| padding: 15px 20px; |
| margin-bottom: 10px; |
| border-radius: 5px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| cursor: pointer; |
| font-size: 16px; |
| } |
| |
| .info-card:hover { |
| background: #e8e8e8; |
| } |
| |
| .info-card .chevron-down { |
| font-size: 12px; |
| } |
| |
| |
| .lineup { |
| background: #f5f5f5; |
| padding: 30px 20px; |
| } |
| |
| .lineup h2 { |
| text-align: center; |
| margin-bottom: 20px; |
| font-size: 28px; |
| } |
| |
| .lineup-tabs { |
| display: flex; |
| justify-content: center; |
| gap: 10px; |
| margin-bottom: 20px; |
| flex-wrap: wrap; |
| } |
| |
| .lineup-tab { |
| padding: 8px 16px; |
| border: 1px solid #0d3cb8; |
| background: white; |
| color: #666; |
| cursor: pointer; |
| border-radius: 3px; |
| font-size: 14px; |
| } |
| |
| .lineup-tab.active { |
| background: #0d3cb8; |
| color: white; |
| } |
| |
| .lineup-cards { |
| display: flex; |
| justify-content: center; |
| gap: 20px; |
| flex-wrap: wrap; |
| } |
| |
| .lineup-pagination { |
| display: none; |
| justify-content: center; |
| gap: 5px; |
| margin-top: 15px; |
| } |
| |
| .lineup-pagination .dot { |
| width: 12px; |
| height: 12px; |
| border-radius: 50%; |
| border: 1px solid #0d3cb8; |
| cursor: pointer; |
| } |
| |
| .lineup-pagination .dot.active { |
| background: #0d3cb8; |
| } |
| |
| .lineup-card { |
| background: white; |
| padding: 20px; |
| border-radius: 5px; |
| text-align: center; |
| width: 300px; |
| } |
| |
| .lineup-card img { |
| width: 100%; |
| height: auto; |
| margin-bottom: 15px; |
| } |
| |
| .lineup-card h3 { |
| margin-bottom: 15px; |
| font-size: 16px; |
| } |
| |
| .view-details-btn { |
| background: white; |
| border: 1px solid #0d3cb8; |
| color: #0d3cb8; |
| padding: 10px 30px; |
| border-radius: 20px; |
| cursor: pointer; |
| font-size: 14px; |
| } |
| |
| .view-all-btn { |
| display: inline-block; |
| margin: 20px auto; |
| background: #0d3cb8; |
| color: white; |
| padding: 10px 20px; |
| border-radius: 20px; |
| text-decoration: none; |
| text-align: center; |
| font-size: 14px; |
| } |
| |
| .view-all-container { |
| text-align: center; |
| } |
| |
| .lineup-card .view-details-btn { |
| display: inline-block; |
| } |
| |
| |
| .footer { |
| background: #0d3cb8; |
| color: white; |
| padding: 30px 20px; |
| } |
| |
| .footer-content { |
| display: flex; |
| justify-content: space-around; |
| margin-bottom: 20px; |
| flex-wrap: wrap; |
| gap: 20px; |
| } |
| |
| .footer-column { |
| text-align: center; |
| min-width: 150px; |
| } |
| |
| .footer-column h4 { |
| margin-bottom: 15px; |
| font-size: 16px; |
| cursor: pointer; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| gap: 5px; |
| } |
| |
| .footer-column .chevron { |
| font-size: 12px; |
| } |
| |
| .footer-column.collapsed .links { |
| display: none; |
| } |
| |
| .footer-column a { |
| color: white; |
| text-decoration: none; |
| display: block; |
| margin-bottom: 5px; |
| font-size: 13px; |
| } |
| |
| .social-icons { |
| display: flex; |
| justify-content: center; |
| gap: 10px; |
| margin-top: 10px; |
| } |
| |
| .social-icon { |
| background: white; |
| border-radius: 50%; |
| width: 24px; |
| height: 24px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| overflow: hidden; |
| } |
| |
| .social-icon img { |
| width: 14px; |
| height: 14px; |
| } |
| |
| .footer-bottom { |
| border-top: 1px solid rgba(255,255,255,0.2); |
| padding-top: 20px; |
| text-align: center; |
| } |
| |
| .footer-bottom a { |
| color: white; |
| text-decoration: none; |
| font-size: 12px; |
| margin: 0 10px; |
| } |
| |
| .copyright { |
| margin-top: 15px; |
| font-size: 12px; |
| } |
| |
| |
| @media (max-width: 1024px) { |
| .nav ul { |
| gap: 15px; |
| } |
| |
| .nav a { |
| font-size: 13px; |
| } |
| |
| .main-content { |
| flex-direction: column; |
| } |
| |
| .product-gallery { |
| display: none; |
| } |
| |
| .product-gallery-mobile { |
| display: block; |
| width: 100%; |
| } |
| |
| .gallery-nav { |
| flex-direction: row; |
| } |
| |
| .gallery-nav button { |
| border-radius: 50%; |
| } |
| |
| .gallery-images { |
| flex-direction: row; |
| } |
| |
| .gallery-item { |
| width: 60px; |
| height: 60px; |
| } |
| |
| .main-image-container { |
| width: 100%; |
| min-width: auto; |
| } |
| |
| .product-info { |
| width: 100%; |
| min-width: auto; |
| } |
| |
| .lineup-cards { |
| flex-direction: column; |
| align-items: center; |
| } |
| |
| .lineup-card:not(:first-child) { |
| display: none; |
| } |
| |
| .lineup-pagination { |
| display: flex; |
| } |
| } |
| |
| |
| @media (max-width: 768px) { |
| .header { |
| padding: 10px 15px; |
| } |
| |
| .hamburger { |
| display: block; |
| } |
| |
| .nav { |
| display: none; |
| } |
| |
| .nav.mobile-visible { |
| display: block; |
| } |
| |
| .nav ul { |
| gap: 10px; |
| } |
| |
| .nav a { |
| font-size: 12px; |
| } |
| |
| .product-header { |
| flex-direction: column; |
| align-items: flex-start; |
| } |
| |
| .compare-box { |
| margin-left: auto; |
| } |
| |
| .main-content { |
| padding: 10px; |
| } |
| |
| .product-gallery { |
| display: none; |
| } |
| |
| .product-gallery-mobile { |
| display: block; |
| width: 100%; |
| margin-bottom: 15px; |
| } |
| |
| .gallery-images { |
| overflow-x: auto; |
| padding: 5px 0; |
| } |
| |
| .gallery-item { |
| width: 50px; |
| height: 50px; |
| flex-shrink: 0; |
| } |
| |
| .main-image-container { |
| width: 100%; |
| min-height: 300px; |
| } |
| |
| .product-info { |
| width: 100%; |
| } |
| |
| .information h2, .lineup h2 { |
| font-size: 24px; |
| } |
| |
| .info-tabs, .lineup-tabs { |
| overflow-x: auto; |
| padding: 5px 0; |
| } |
| |
| .info-tab, .lineup-tab { |
| flex-shrink: 0; |
| } |
| |
| .lineup-cards { |
| flex-direction: column; |
| align-items: center; |
| } |
| |
| .lineup-card:not(:first-child) { |
| display: none; |
| } |
| |
| .lineup-pagination { |
| display: flex; |
| } |
| |
| .lineup-card { |
| width: 100%; |
| max-width: 300px; |
| } |
| |
| .footer-content { |
| flex-direction: column; |
| } |
| |
| .footer-column { |
| width: 100%; |
| margin-bottom: 20px; |
| } |
| |
| .footer-column .chevron { |
| display: inline-block; |
| } |
| |
| .footer-column.collapsed .links { |
| display: none; |
| } |
| } |
| </style> |
| </head> |
| <body> |
| <header class="header"> |
| <div class="logo"> |
| <span class="brand">brother</span> |
| <span class="tagline">at your side</span> |
| </div> |
| <div class="header-right"> |
| <select class="language-select"> |
| <option>English (EU)</option> |
| </select> |
| <div class="search-btn"> |
| <img src="resources/images/search.svg" alt="Search" style="width: 16px; height: 16px;"> |
| <span>Search</span> |
| </div> |
| <div class="hamburger"> |
| <img src="resources/images/hamburger.svg" alt="Menu" style="width: 20px; height: 20px;"> |
| </div> |
| </div> |
| </header> |
| |
| <script> |
| document.querySelector('.hamburger').addEventListener('click', function() { |
| document.querySelector('.nav').classList.toggle('mobile-visible'); |
| }); |
| |
| document.querySelectorAll('.footer-column h4').forEach(function(header) { |
| header.addEventListener('click', function() { |
| this.parentElement.classList.toggle('collapsed'); |
| }); |
| }); |
| </script> |
| |
| <nav class="nav"> |
| <ul> |
| <li><a href="#">Products <span class="dropdown-arrow">▼</span></a></li> |
| <li><a href="#">Events</a></li> |
| <li><a href="#">Case & Solutions <span class="dropdown-arrow">▼</span></a></li> |
| <li><a href="#">Support & Download <span class="dropdown-arrow">▼</span></a></li> |
| <li><a href="#">Contact Us <span class="dropdown-arrow">▼</span></a></li> |
| <li><a href="#">About <span class="dropdown-arrow">▼</span></a></li> |
| <li><a href="#">[SPEEDIO SOLUTION NAVI]</a></li> |
| </ul> |
| </nav> |
| |
| <div class="breadcrumb"> |
| <span>Home</span> > <span>Machine Tool</span> > <span>R650X1</span> |
| </div> |
| |
| <div class="product-header"> |
| <h1 class="product-title">SPEEDIO R650X1</h1> |
| <div class="compare-box"> |
| <input type="checkbox" id="compare"> |
| <label for="compare">Compare</label> |
| </div> |
| <button class="contact-btn">Contact Distributor</button> |
| </div> |
| |
| <main class="main-content"> |
| <div class="product-gallery"> |
| <div class="gallery-nav"> |
| <button>↑</button> |
| <div class="gallery-images"> |
| <div class="gallery-item active"><img src="resources/images/r650x1-01.jpg" alt="Product 1"></div> |
| <div class="gallery-item"><img src="resources/images/r650x1-02.jpg" alt="Product 2"></div> |
| <div class="gallery-item"><img src="resources/images/r650x1-03.jpg" alt="Product 3"></div> |
| <div class="gallery-item"><img src="resources/images/r650x1-04.jpg" alt="Product 4"></div> |
| </div> |
| <button>↓</button> |
| </div> |
| </div> |
| |
| <div class="product-gallery-mobile"> |
| <div class="gallery-nav horizontal"> |
| <button>←</button> |
| <div class="gallery-images"> |
| <div class="gallery-item active"><img src="resources/images/r650x1-01.jpg" alt="Product 1"></div> |
| <div class="gallery-item"><img src="resources/images/r650x1-02.jpg" alt="Product 2"></div> |
| <div class="gallery-item"><img src="resources/images/r650x1-03.jpg" alt="Product 3"></div> |
| <div class="gallery-item"><img src="resources/images/r650x1-04.jpg" alt="Product 4"></div> |
| </div> |
| <button>→</button> |
| </div> |
| </div> |
| |
| <div class="main-image-container"> |
| <span class="discontinued-badge">Discontinued Product</span> |
| <div class="main-image-content"> |
| <img src="resources/images/r650x1-01.jpg" alt="Main Product"> |
| </div> |
| <span class="zoom-icon">🔍</span> |
| </div> |
| |
| <div class="product-info"> |
| <h1>SPEEDIO R650X1</h1> |
| <h2>Pallet Changing Compact Machining Center</h2> |
| <div class="tags"> |
| <span>Pallet Changer</span> |
| <span>•</span> |
| <span>14 Tool Magazine</span> |
| <span>•</span> |
| <span>22 Tool Magazine</span> |
| </div> |
| |
| <div class="action-buttons"> |
| <a href="#" class="action-btn"> |
| <img src="resources/images/download.svg" alt="Download" style="width: 14px; height: 14px;">Catalog download |
| </a> |
| <a href="#" class="action-btn"> |
| <img src="resources/images/question.svg" alt="Ask" style="width: 14px; height: 14px;">Ask us about this product |
| </a> |
| <button class="print-btn"> |
| <img src="resources/images/download.webp" alt="Print" style="width: 14px; height: 14px;">Print |
| </button> |
| </div> |
| |
| <div class="specs"> |
| <ul> |
| <li>Travels (mm): X: 650 Y: 400 Z: 305</li> |
| <li>Max. spindle speed (min⁻¹): 10,000/ (Optional) 16,000/ (Optional) 10,000 high-torque</li> |
| <li>Tool storage capacity(pcs.): 14/ 22</li> |
| </ul> |
| </div> |
| |
| <p class="description"> |
| The machine demonstrates high productivity, and also provides the largest machining area among "QT table" machines, enabling the mounting of large jigs that was not possible on conventional machines. |
| </p> |
| </div> |
| </main> |
| |
| <section class="information"> |
| <h2>Information</h2> |
| <div class="info-tabs"> |
| <button class="info-tab active">Overview</button> |
| <button class="info-tab">Specifications</button> |
| <button class="info-tab">Example</button> |
| <button class="info-tab">Support</button> |
| </div> |
| <div class="info-cards"> |
| <div class="info-card"> |
| <span>Enlargement of Machining Area</span> |
| <span class="chevron-down">▼</span> |
| </div> |
| <div class="info-card"> |
| <span>Quest for High Performance</span> |
| <span class="chevron-down">▼</span> |
| </div> |
| <div class="info-card"> |
| <span>High Reliability and Environmental Performance</span> |
| <span class="chevron-down">▼</span> |
| </div> |
| </div> |
| </section> |
| |
| <section class="lineup"> |
| <h2>Machine Tools Lineup</h2> |
| <div class="lineup-tabs"> |
| <button class="lineup-tab active">Compact machining center SPEEDIO</button> |
| <button class="lineup-tab">Horizontal Compact Machining Center</button> |
| <button class="lineup-tab">Multi-Tasking Machine SPEEDIO</button> |
| </div> |
| <div class="lineup-cards"> |
| <div class="lineup-card"> |
| <img src="resources/images/s700xd2-100t-01.webp" alt="S700Xd2-100T"> |
| <h3>S700Xd2-100T</h3> |
| <button class="view-details-btn">View Details</button> |
| </div> |
| <div class="lineup-card"> |
| <img src="resources/images/s700xd2.webp" alt="S700Xd2-5AX 100T"> |
| <h3>S700Xd2-5AX 100T</h3> |
| <button class="view-details-btn">View Details</button> |
| </div> |
| <div class="lineup-card"> |
| <img src="resources/images/u500xd2-100t-01.webp" alt="U500Xd2-100T"> |
| <h3>U500Xd2-100T</h3> |
| <button class="view-details-btn">View Details</button> |
| </div> |
| </div> |
| <div class="lineup-pagination"> |
| <div class="dot active"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| </div> |
| <div class="view-all-container"> |
| <a href="#" class="view-all-btn">View All SPEEDIO</a> |
| </div> |
| </section> |
| |
| <footer class="footer"> |
| <div class="footer-content"> |
| <div class="footer-column"> |
| <h4>About <span class="chevron">▼</span></h4> |
| <div class="links"> |
| <a href="#">Company Profile</a> |
| <a href="#">News</a> |
| <a href="#">Product Video</a> |
| <a href="#">Events</a> |
| </div> |
| </div> |
| <div class="footer-column"> |
| <h4>Support <span class="chevron">▼</span></h4> |
| <div class="links"> |
| <a href="#">Catalog Download <img src="resources/images/download.webp" alt="External" style="width: 10px; height: 10px;"></a> |
| <a href="#">Product Information Contacts</a> |
| <a href="#">Repair Contacts</a> |
| <a href="#">Security Support Information <img src="resources/images/download.webp" alt="External" style="width: 10px; height: 10px;"></a> |
| </div> |
| </div> |
| <div class="footer-column"> |
| <h4>Connect <span class="chevron">▼</span></h4> |
| <div class="links"> |
| <div class="social-icons"> |
| <a href="#"><span class="social-icon"><img src="resources/images/youtube.svg" alt="YouTube"></span></a> |
| <a href="#"><span class="social-icon"><img src="resources/images/linkedin.svg" alt="LinkedIn"></span></a> |
| </div> |
| </div> |
| </div> |
| </div> |
| <div class="footer-bottom"> |
| <a href="#">Machine Tools | Global Network <img src="resources/images/download.webp" alt="External" style="width: 10px; height: 10px;"></a> |
| <a href="#">Privacy Policy</a> |
| <a href="#">Cookie Policy</a> |
| <a href="#">Term of Use</a> |
| <a href="#">Sitemap</a> |
| <a href="#">Go to Global Site <img src="resources/images/download.webp" alt="External" style="width: 10px; height: 10px;"></a> |
| <div class="copyright"> |
| © 1995-2026 Brother Industries, Ltd. All Rights Reserved. |
| </div> |
| </div> |
| </footer> |
| </body> |
| </html> |
|
|