Advertisement
qee20

exer p05 plain html

Apr 8th, 2025
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.   <title>TechBoard Inc.</title>
  7.   <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10.   <header>
  11.     <div class="container">
  12.       <h1>TechBoard Inc.</h1>
  13.       <nav>
  14.         <ul>
  15.           <li><a href="#about">About</a></li>
  16.           <li><a href="#products">Products</a></li>
  17.           <li><a href="#contact">Contact</a></li>
  18.         </ul>
  19.       </nav>
  20.     </div>
  21.   </header>
  22.  
  23.   <section class="hero">
  24.     <div class="container">
  25.       <h2>Innovating the Future of Motherboards</h2>
  26.       <p>High-performance, reliable, and cutting-edge motherboard solutions for modern computing.</p>
  27.     </div>
  28.   </section>
  29.  
  30.   <section id="about" class="about">
  31.     <div class="container">
  32.       <h2>About Us</h2>
  33.       <p>TechBoard Inc. is a leading manufacturer of high-quality motherboards, powering computers around the globe with innovation and reliability. Our mission is to deliver superior technology solutions tailored to the demands of gamers, professionals, and businesses.</p>
  34.     </div>
  35.   </section>
  36.  
  37.   <section id="products" class="products">
  38.     <div class="container">
  39.       <h2>Our Products</h2>
  40.       <div class="product-grid">
  41.  
  42.         <div class="product-card">
  43.           <img src="images/tbx500.jpg" alt="TBX-500 Pro">
  44.           <h3>TBX-500 Pro</h3>
  45.           <p>Designed for gamers, with RGB lighting and overclocking support.</p>
  46.           <p class="price">$249.99</p>
  47.         </div>
  48.  
  49.         <div class="product-card">
  50.           <img src="images/tbx800.jpg" alt="TBX-800 Ultra">
  51.           <h3>TBX-800 Ultra</h3>
  52.           <p>Enterprise-class reliability for server environments.</p>
  53.           <p class="price">$399.99</p>
  54.         </div>
  55.  
  56.         <div class="product-card">
  57.           <img src="images/tbx300.jpg" alt="TBX-300 Lite">
  58.           <h3>TBX-300 Lite</h3>
  59.           <p>Cost-effective and energy-efficient for everyday users.</p>
  60.           <p class="price">$129.99</p>
  61.         </div>
  62.  
  63.       </div>
  64.     </div>
  65.   </section>
  66.  
  67.   <section id="contact" class="contact">
  68.     <div class="container">
  69.       <h2>Contact Us</h2>
  70.       <p>Email: [email protected]</p>
  71.       <p>Phone: +1 800 555 1234</p>
  72.       <p>Address: 123 Tech Valley, Silicon City, USA</p>
  73.     </div>
  74.   </section>
  75.  
  76.   <footer>
  77.     <div class="container">
  78.       <p>&copy; 2025 TechBoard Inc. All rights reserved.</p>
  79.     </div>
  80.   </footer>
  81. </body>
  82. </html>
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement