laanaanaal

Untitled

Aug 1st, 2025
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 6.15 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>Momentum AI - Automate Your Workflow</title>
  7.     <style>
  8.         :root {
  9.             --primary-color: #0047FF;
  10.             --secondary-color: #f4f4f9;
  11.             --text-color: #333;
  12.             --font-family: 'Arial', sans-serif;
  13.             --max-width: 1200px;
  14.         }
  15.        
  16.         body, h1, h2, h3, p, a {
  17.             margin: 0;
  18.             padding: 0;
  19.             line-height: 1.6;
  20.             color: var(--text-color);
  21.         }
  22.        
  23.         body {
  24.             font-family: var(--font-family);
  25.             background-color: var(--secondary-color);
  26.         }
  27.        
  28.         header {
  29.             background-color: var(--primary-color);
  30.             color: #fff;
  31.             padding: 1rem;
  32.             text-align: center;
  33.         }
  34.  
  35.         nav {
  36.             display: flex;
  37.             justify-content: center;
  38.             margin-top: 1rem;
  39.         }
  40.  
  41.         nav a {
  42.             color: #fff;
  43.             text-decoration: none;
  44.             margin: 0 1rem;
  45.             font-size: clamp(1rem, 1vw + 1rem, 1.25rem);
  46.             position: relative;
  47.         }
  48.  
  49.         nav a::after {
  50.             content: '';
  51.             display: block;
  52.             width: 0;
  53.             height: 2px;
  54.             background: #fff;
  55.             transition: width .3s;
  56.             position: absolute;
  57.             bottom: -5px;
  58.             left: 50%;
  59.             transform: translateX(-50%);
  60.         }
  61.  
  62.         nav a:focus-visible::after,
  63.         nav a:hover::after {
  64.             width: 100%;
  65.         }
  66.        
  67.         main {
  68.             max-width: var(--max-width);
  69.             margin: auto;
  70.             padding: 2rem;
  71.         }
  72.  
  73.         .hero {
  74.             text-align: center;
  75.             margin-bottom: 3rem;
  76.         }
  77.  
  78.         .hero h1 {
  79.             font-size: clamp(2rem, 2.5vw + 2rem, 3rem);
  80.         }
  81.  
  82.         .hero p {
  83.             font-size: clamp(1rem, 1.5vw + 1rem, 1.25rem);
  84.         }
  85.  
  86.         .cta-button {
  87.             background-color: var(--primary-color);
  88.             color: #fff;
  89.             padding: 1rem 2rem;
  90.             border: none;
  91.             border-radius: 5px;
  92.             font-size: 1rem;
  93.             cursor: pointer;
  94.             margin-top: 1rem;
  95.         }
  96.  
  97.         .cta-button:focus-visible,
  98.         .cta-button:hover {
  99.             background-color: #0033cc;
  100.         }
  101.        
  102.         section {
  103.             margin-bottom: 3rem;
  104.             opacity: 0;
  105.             transform: translateY(20px);
  106.             transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  107.         }
  108.        
  109.         section.visible {
  110.             opacity: 1;
  111.             transform: translateY(0);
  112.         }
  113.  
  114.         .features {
  115.             display: grid;
  116.             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  117.             gap: 2rem;
  118.         }
  119.        
  120.         .feature {
  121.             background: #fff;
  122.             padding: 1.5rem;
  123.             border-radius: 8px;
  124.             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  125.         }
  126.  
  127.         .feature img {
  128.             width: 100%;
  129.             border-radius: 5px;
  130.         }
  131.  
  132.         footer {
  133.             text-align: center;
  134.             padding: 1rem;
  135.             background-color: var(--primary-color);
  136.             color: #fff;
  137.         }
  138.  
  139.         @media (min-width: 768px) {
  140.             nav {
  141.                 justify-content: flex-start;
  142.             }
  143.         }
  144.  
  145.     </style>
  146. </head>
  147. <body>
  148.     <header>
  149.         <h1>Momentum AI</h1>
  150.         <p>Automate Your Workflow. Unleash Your Potential.</p>
  151.     </header>
  152.     <nav aria-label="Main Navigation">
  153.         <a href="#features">Features</a>
  154.         <a href="#demo" class="cta-button">Request a Demo</a>
  155.     </nav>
  156.     <main>
  157.         <section class="hero" id="hero">
  158.             <h2>Welcome to Momentum AI</h2>
  159.             <p>Empowering teams with the AI-driven tools to automate workflows and harness their potential.</p>
  160.             <button class="cta-button" aria-label="Request a Demo">Request a Demo</button>
  161.         </section>
  162.         <section id="features" class="features">
  163.             <article class="feature">
  164.                 <img src="https://placehold.co/300x200" alt="Illustration of intelligent task routing">
  165.                 <h3>Intelligent Task Routing</h3>
  166.                 <p>Automatically assigns tasks to the right team member based on priority and workload.</p>
  167.             </article>
  168.             <article class="feature">
  169.                 <img src="https://placehold.co/300x200" alt="Graph representing predictive analytics">
  170.                 <h3>Predictive Analytics</h3>
  171.                 <p>Forecasts project deadlines and resource needs with 95% accuracy.</p>
  172.             </article>
  173.             <article class="feature">
  174.                 <img src="https://placehold.co/300x200" alt="Integration example with multiple tool logos">
  175.                 <h3>Seamless Integration</h3>
  176.                 <p>Connects effortlessly with over 200+ existing tools like Slack, Jira, and Asana.</p>
  177.             </article>
  178.         </section>
  179.     </main>
  180.     <footer>
  181.         <p>© 2023 Momentum AI. All rights reserved.</p>
  182.     </footer>
  183.     <script>
  184.         document.querySelectorAll('a[href^="#"]').forEach(anchor => {
  185.             anchor.addEventListener('click', function (e) {
  186.                 e.preventDefault();
  187.                 document.querySelector(this.getAttribute('href')).scrollIntoView({
  188.                     behavior: 'smooth'
  189.                 });
  190.             });
  191.         });
  192.  
  193.         // Utilizing IntersectionObserver for fade-in effect
  194.         const observer = new IntersectionObserver((entries, observer) => {
  195.             entries.forEach(entry => {
  196.                 if (entry.isIntersecting) {
  197.                     entry.target.classList.add('visible');
  198.                     observer.unobserve(entry.target);
  199.                 }
  200.             });
  201.         }, {threshold: 0.1});
  202.  
  203.         document.querySelectorAll('section').forEach(section => {
  204.             observer.observe(section);
  205.         });
  206.     </script>
  207. </body>
  208. </html>
Advertisement
Add Comment
Please, Sign In to add comment